-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
27 lines (25 loc) · 1.05 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
from setuptools import setup, find_packages
install_requires = [i.strip() for i in open("requirements.txt").readlines()]
setup(name='graphspace_python',
version='1.3.1',
description='Python client for GraphSpace REST API',
url='http://github.com/adbharadwaj/graphspace-python',
author='Aditya Bharadwaj',
author_email='[email protected]',
license='GPL3',
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
packages=find_packages(),
install_requires=install_requires,
zip_safe=False)