-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
51 lines (49 loc) · 1.81 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
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
with open('README.md', 'r') as fh:
long_description = fh.read()
setup(
name='pyoslc',
version='0.1.0',
author='Contact Software',
author_email='[email protected]',
description='SDK for implementing OSLC API using Python.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/cslab/pyoslc',
packages=find_packages(),
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'License :: OSI Approved',
'Operating System :: OS Independent',
],
keywords='OSLC, SDK, REST, API, RDF, JSON-LD',
python_requires='>=2.7',
install_requires=[
"python-dotenv == 0.18.0 ; python_version <= '2.7'",
"python-dotenv > 0.18.0 ; python_version > '2.7'",
"RDFLib == 5.0.0 ; python_version <= '2.7'",
"RDFLib-JSONLD == 0.6.1 ; python_version <= '2.7'",
"RDFLib >= 6.0.0 ; python_version > '2.7'",
"Flask == 1.0.2 ; python_version <= '2.7'",
"Flask > 1.0.2 ; python_version > '2.7'",
"Flask-RESTx == 0.5.1 ; python_version <= '2.7'",
"Flask-RESTx > 0.5.1 ; python_version > '2.7'",
'authlib~=0.14.3',
'cachelib~=0.1.1',
'requests',
"Werkzeug == 1.0.1 ; python_version <= '2.7'",
"Werkzeug > 1.0.1 ; python_version > '2.7'",
],
extras_require={
'dotenv': ['python-dotenv'],
'dev': ['check-manifest'],
'test': ['pytest', 'pytest-cov', 'pytest-html'],
},
project_urls={
'Bug Reports': 'https://github.com/cslab/pyoslc/issues',
'Source': 'https://github.com/cslab/pyoslc',
},
)