forked from norse/norse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 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
import setuptools
from setuptools import setup
from os import path
pwd = path.abspath(path.dirname(__file__))
with open(path.join(pwd, "requirements.txt")) as fp:
install_requires = fp.read()
with open(path.join(pwd, "README.md"), encoding="utf-8") as fp:
readme_text = fp.read()
setup(
install_requires=install_requires,
name="norse",
version="0.0.4",
description="A library for deep learning with spiking neural networks",
long_description=readme_text,
long_description_content_type="text/markdown",
url="http://github.com/norse/norse",
author="Christian Pehle",
author_email="[email protected]",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="machine learning spiking neural networks",
)