forked from uw-it-aca/uw-restclients-gws
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1.21 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
38
import os
from setuptools import setup
README = """
See the README on `GitHub
<https://github.com/uw-it-aca/uw-restclients-gws>`_.
"""
# The VERSION file is created by travis-ci, based on the tag name
version_path = 'uw_gws/VERSION'
VERSION = open(os.path.join(os.path.dirname(__file__), version_path)).read()
VERSION = VERSION.replace("\n", "")
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
url = "https://github.com/uw-it-aca/uw-restclients-gws"
setup(
name='UW-RestClients-GWS',
version=VERSION,
packages=['uw_gws'],
author="UW-IT AXDD",
author_email="[email protected]",
include_package_data=True,
install_requires=['UW-RestClients-Core>=1.3.2,<2.0'],
license='Apache License, Version 2.0',
description=('A library for connecting to the Groups Web Service at the '
'University of Washington'),
long_description=README,
url=url,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
],
)