-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
55 lines (48 loc) · 1.47 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
install_requires = [
# core
"requests",
"pyyaml",
"docopt",
"jinja2",
"pyvirtualdisplay",
# for running models
"pyqt5",
"ipython",
"matplotlib",
"scipy",
"2to3",
"numpy<2",
]
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
def setup_package():
setup(
name="nrn-modeldb-ci",
description="NEURON ModelDB CI tools",
url="https://github.com/neuronsimulator/nrn-modeldb-ci",
author="EPFL Blue Brain Project & Yale",
author_email="[email protected]",
license="BSD-3-Clause",
packages=find_packages(),
use_scm_version=True,
include_package_data=True,
install_requires=install_requires,
setup_requires=["setuptools_scm"],
entry_points=dict(
console_scripts=[
"runmodels = modeldb.commands:runmodels",
"getmodels = modeldb.commands:getmodels",
"diffgout = modeldb.commands:diffgout",
"modeldb-config = modeldb.commands:modeldb_config",
"report2html = modeldb.commands:report2html",
"diffreports2html = modeldb.commands:diffreports2html",
]
),
long_description=long_description,
long_description_content_type="text/markdown",
)
if __name__ == "__main__":
setup_package()