-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (25 loc) · 1.04 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
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="trompa-solid",
author="Music Technology Group, Universitat Pompeu Fabra",
install_requires=['requests', 'redis', 'PyJWT>=2.0.0', 'jwcrypto', 'six', 'cryptography'],
description="A python library for communicating with a SOLID pod",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/trompamusic/solid-auth-demo",
packages=['trompasolid', 'trompasolid.backend', 'trompasolid.model'],
use_scm_version=True,
setup_requires=['setuptools_scm'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: Libraries"
],
python_requires='>=3.7',
)