-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.4 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
import setuptools
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="incentive",
version="v1.1-alpha",
author="Evripidis Gkanias",
maintainer="Evripidis Gkanias",
author_email="[email protected]",
maintainer_email="[email protected]",
description="A package implementing the incentive circuit in the fruit fly brain",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/InsectRobotics/IncentiveCircuit",
project_urls={
"Bug Tracker": "https://github.com/InsectRobotics/IncentiveCircuit/issues"
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Science/Research",
"Licence :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent"
],
packages=["incentive"],
package_dir={"": "src"},
package_data={'incentive': [os.path.join('data', 'bennett2021', '*'),
os.path.join('data', 'handler2019', '*'),
os.path.join('data', 'fruitfly', '*'),
os.path.join('data', 'arena', '*'),
os.path.join('data', 'model-parameters.yml')]},
python_requires=">=3.7",
)