-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 957 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
29
30
31
32
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='GSN',
version='0.0.1',
description='Python GSN',
url='https://github.com/cvnlab/GSN',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
"Programming Language :: Python",
"Development Status :: 1 - Planning",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
],
maintainer='Jacob Prince',
maintainer_email='[email protected]',
keywords='neuroscience ',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires
)