-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (27 loc) · 857 Bytes
/
setup.py
File metadata and controls
executable file
·29 lines (27 loc) · 857 Bytes
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
from setuptools import setup
import sys
# Python 3 conversion
extra = {}
if sys.version_info >= (3,):
extra['use_2to3'] = True
setup(
name='python-mydns',
version='1.0.1',
description="A library to connect to mydns mysql database and manage them.",
author='Renato Covarrubias',
author_email='rnt [at] rnt.cl]',
packages=['mydns'],
license='GPL-3.0',
url='https://github.com/rnt/python-mydns',
classifiers=[
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GPL-3.0 License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
**extra
)