-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 952 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='sPyMem',
version="0.0.9",
author="Daniel Casanueva Morato",
author_email="[email protected]",
description="An open-source package that offer fully-functional spike-based bio-inspired hippocampal memory models implemented with SNN technology in the SpiNNaker hardware.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/dancasmor/sPyMem",
project_urls={
"Bug Tracker": "https://github.com/dancasmor/sPyMem/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=find_packages(),
python_requires=">=3.6",
include_package_data=True,
)