-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
56 lines (55 loc) · 1.83 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
54
55
56
from setuptools import setup
setup(
name='nexus-cli',
version='0.3.0',
description='A Command Line Interface (CLI) for Blue Brain Nexus.',
keywords='nexus cli',
url="https://github.com/BlueBrain/nexus-cli",
author="Samuel Kerrien, Mohameth Francois Sy, Henry Genet",
license="Apache License, Version 2.0",
python_requires=">=3.5.3",
py_modules=['cli'],
packages=["nexuscli","nexuscli.helpers"],
install_requires=[
'aiohttp',
'click',
'colorama',
'progressbar2',
'prettytable',
'PyJWT',
'pygments',
'pandas',
'python-keycloak',
'pytest',
'nexus-sdk',
'rdflib',
'rdflib-jsonld',
'SPARQLWrapper'
],
entry_points='''
[console_scripts]
nexus=nexuscli.cli:cli
''',
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Database",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5'",
"Programming Language :: Python :: 3.6'",
"Programming Language :: Python :: 3.7'",
"Programming Language :: Python :: 3.8'",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
]
)