forked from madssj/python-gratisdns
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.13 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.13 KB
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
34
35
36
37
38
39
40
41
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name='python-gratisdns',
version='0.3',
author='Mads Sülau Jørgensen, Kasper Laudrup',
author_email='mads@sulau.dk, laudrup@stacktrace.dk',
url='https://github.com/laudrup/python-gratisdns',
packages=[
'gratisdns',
],
license='MIT',
description='Unofficial library for interfacing with the gratisdns.dk web interface',
long_description=readme(),
long_description_content_type='text/markdown',
install_requires=[
'requests-html',
'wheel',
],
test_suite='nose.collector',
tests_require=[
'nose'
],
keywords='gratisdns, dns',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries',
],
)