- Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
20 lines (17 loc) · 500 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (17 loc) · 500 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
try:
fromsetuptoolsimportsetup
exceptImportError:
fromdistutils.coreimportsetup
config= {
'description': 'Python Little Unix Server Toolkit',
'author': 'Zed A. Shaw',
'url': 'http://pypi.python.org/pypi/python-lust',
'download_url': 'http://pypi.python.org/pypi/python-lust',
'author_email': 'zedshaw@zedshaw.com',
'version': '1.0.9',
'scripts': [],
'install_requires': [],
'packages': ['lust'],
'name': 'python-lust'
}
setup(**config)