-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (24 loc) · 794 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
27
28
from setuptools import setup, find_packages
requires = []
with open('requirements.txt') as reqfile:
requires = reqfile.read().splitlines()
with open('README.md', encoding='utf-8') as readmefile:
long_description = readmefile.read()
setup(
name='NEST',
version='0.3.7',
description='Neural Encoding Simulation Toolkit',
url='https://github.com/gifale95/NEST',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python",
"Intended Audience :: Science/Research",
],
maintainer='Alessandro Gifford',
maintainer_email='alessandro.gifford@gmail.com',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires
)