-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·33 lines (30 loc) · 1.02 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/usr/bin/env python
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='octodns_lexicon',
version='0.1.dev4',
description='Lexicon provider for OctoDNS',
url='http://github.com/doddo/octodns-lexiconprovider',
author='Petter Hassberg',
author_email='[email protected]',
long_description=long_description,
long_description_content_type="text/markdown",
license='MIT',
py_modules=["octodns_lexicon"],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: Name Service (DNS)',
'Topic :: System :: Systems Administration',
'Topic :: Utilities',
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3',
],
tests_require=["pytest"],
install_requires=[
'octodns>=0.9.21',
'dns-lexicon>=3.3.23']
)