-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1 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
from setuptools import setup, find_packages
from presto import version
ver = version.get_version()
setup(name='pRESTo',
version=ver,
description='Command line Rest Api client',
long_description='',
author='Nikolay Melnik',
author_email='nmelnik@odeskps.com',
packages = find_packages(exclude=['tests']),
package_data = {
'presto': [ 'presto.cfg'],
},
install_requires = ['docopt', 'json_tools', 'oauthlib', ],
classifiers=['Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'],
scripts = ['presto-cfg.py',
'presto-url.py']
)