-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (42 loc) · 1.42 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
setuptools.setup(
name="arena-py",
version="0.1.43",
author="Conix Research Center",
author_email="info@conix.io",
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/conix-center/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.0",
"requests~=2.23.0",
"webcolors~=1.3",
"google_auth_oauthlib~=0.4.4",
"google-auth~=1.32.1",
"PyJWT~=2.0.0",
"numpy>=1.19.5",
"scipy>=1.5.4"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)