-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·27 lines (25 loc) · 1.06 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
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="trompace-client",
author="Music Technology Group, Universitat Pompeu Fabra",
install_requires=['requests', 'asyncio', 'aiohttp', 'websockets', 'aiofiles', 'PyJWT>=2.0.0', 'graphql-core>=3'],
description="A python library to read from and write to the Trompa CE",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/trompamusic/trompace-client",
packages=find_packages(exclude=['tests', 'demo']),
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',
)