-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 782 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
try:
from setuptools import setup
except:
from distutils.core import setup
config = {
'description': 'Command line tools for scaffolding a Rest.li project',
'author': 'Christopher Harris',
'url': 'https://github.com/cbrentharris/restli-cli',
'download_url': 'https://github.com/cbrentharris/restli-cli/archive/master.zip',
'author_email': 'cbrentharris@gmail.com',
'version': '0.2',
'install_requires': ['nose'],
'packages': ['restli'],
'scripts':[],
'name': 'restli',
'test_suite': 'nose.collector',
'tests_require': ['nose', 'mock'],
'entry_points': { 'console_scripts' : ['restli=restli.command_line:main']},
'include_package_data': True,
}
setup(**config)