forked from wettenhj/mytardisclient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.15 KB
/
setup.py
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
"""
setup.py for mytardisclient
Update and upload docs:
python setup.py build_sphinx
python setup.py upload_sphinx
Upload source distribution:
python setup.py sdist upload
"""
from setuptools import setup
from setuptools import find_packages
import mytardisclient
setup(name='mytardisclient',
packages=find_packages(),
version=mytardisclient.__version__,
description="Command Line Interface and Python classes "
"for interacting with MyTardis's REST API.",
long_description='',
author='James Wettenhall',
author_email='[email protected]',
url='http://github.com/wettenhj/mytardisclient',
download_url='https://github.com/wettenhj/mytardisclient'
'/archive/%s.tar.gz' % mytardisclient.__version__,
keywords=['mytardis', 'REST'], # arbitrary keywords
classifiers=[],
license='GPL',
entry_points={
"console_scripts": [
"mytardis = mytardisclient.client:run",
],
},
install_requires=['requests', 'pyopenssl', 'ndg-httpsclient', 'pyasn1',
'ConfigParser', 'texttable', 'dogpile.cache'],
zip_safe=False)