-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
35 lines (32 loc) · 1.23 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
# Idea borrowed from http://cburgmer.posterous.com/pip-requirementstxt-and-setuppy
install_requires, dependency_links = [], []
for line in open('requirements.txt'):
line = line.strip()
if line.startswith('-e'):
dependency_links.append(line[2:].strip())
elif line:
install_requires.append(line)
setup(
name='grouper_ws',
description="Grouper Web Services library for Python",
author='Systems Development and Support, IT Services, University of Oxford',
author_email='[email protected]',
version='0.2.5',
license='BSD',
url='https://github.com/rb12345/grouper_ws',
long_description=open('README.rst').read(),
classifiers=['Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content'],
packages=['grouper_ws'],
package_dir={'grouper_ws': 'grouper_ws'},
install_requires=install_requires,
dependency_links=dependency_links,
)