-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 971 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 971 Bytes
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
import setuptools
from pybt import __version__, __url__, __author__, __author_email__, __license__, __description__
setuptools.setup(
name='bt-python-sdk',
version=__version__,
description=__description__,
author=__author__,
author_email=__author_email__,
license=__license__,
packages=[
'pybt',
'pybt.api',
'pybt.core',
'examples'
],
url=__url__,
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)