-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
39 lines (34 loc) · 1.29 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
requirements = ["requests", "click", "pyyaml", "ebrains_drive"]
test_requirements = [
# TODO: put package test requirements here
]
long_description = open("README.md").read()
setup(
name="hbp_neuromorphic_platform",
version="0.11.2",
packages=["nmpi"],
package_dir={"nmpi": "nmpi"},
entry_points={"console_scripts": ["nmpi=nmpi.cli:cli"]},
install_requires=requirements,
author="Andrew P. Davison and Domenico Guarino",
author_email="[email protected]",
description="Client software for the EBRAINS Neuromorphic Computing Platform",
long_description=long_description,
license="License :: OSI Approved :: Apache Software License",
url="https://github.com/HumanBrainProject/hbp-neuromorphic-client",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
],
)