-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
53 lines (48 loc) · 1.68 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
52
53
import os
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
# package_root = os.path.abspath(os.path.dirname(__file__))
# version = {}
# with open(os.path.join(package_root, "arena/version.py")) as fp:
# exec(fp.read(), version)
# version = version["__version__"]
setuptools.setup(
name="arena-py",
version="1.0.2",
author="Carnegie Mellon University",
author_email="arenaxr@andrew.cmu.edu",
license="BSD 3-clause \"New\" or \"Revised License\"",
description="Draw objects and run programs in the ARENA using Python!",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/arenaxr/arena-py",
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'arena=arena.__main__:cli',
'arena-py-permissions=arena.scripts.arena_py_permissions:main',
'arena-py-pub=arena.scripts.arena_py_pub:main',
'arena-py-signout=arena.scripts.arena_py_signout:main',
'arena-py-sub=arena.scripts.arena_py_sub:main',
'arena-py-token=arena.scripts.arena_py_token:main'
],
},
install_requires=[
"aiohttp>=3.7.4",
"paho-mqtt~=1.5.1",
"requests~=2.32.0",
"webcolors~=1.3",
"google_auth_oauthlib~=1.0.0",
"google-auth~=2.22.0",
"PyJWT~=2.4.0",
"opentelemetry-exporter-otlp-proto-grpc==1.21.*",
"numpy>=1.22.0",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.10',
)