-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
45 lines (39 loc) · 1.36 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "c302", "__version__.py")) as version_file:
exec(version_file.read(), about)
version = about["__version__"]
long_description = """
c302 is a framework for generating network models in NeuroML 2 based on C elegans connectivity data. Part of the OpenWorm project.
"""
setup(
name="c302",
version=version,
author="Padraig Gleeson and OpenWorm contributors",
author_email="p.gleeson@gmail.com",
packages=["c302"],
install_requires=[
"numpy",
"xlrd",
"xlwt",
"pyNeuroML>=0.5.11",
"WormNeuroAtlas",
],
entry_points={"console_scripts": ["c302 = c302.__init__:main"]},
package_data={"c302": ["*.xml", "data/*", "NeuroML2/*"]},
description="c302 is a framework for generating models of the worm C. elegans",
long_description=long_description,
license="MIT",
url="http://github.com/openworm/c302",
download_url="https://github.com/openworm/c302/archive/master.zip",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
],
)