1
+ #! /usr/bin/env python
2
+ import setuptools # noqa; we are using a setuptools namespace
3
+ # from numpy.distutils.core import setup
4
+ from setuptools import setup , Extension
5
+
6
+ descr = """A python package that includes many methods for decoding neural activity."""
7
+
8
+ DISTNAME = 'Neural Decoding'
9
+ DESCRIPTION = descr
10
+ MAINTAINER = 'Josh Glaser'
11
+ MAINTAINER_EMAIL = '[email protected] '
12
+ LICENSE = 'BSD 3-Clause License'
13
+ DOWNLOAD_URL = 'https://github.com/KordingLab/Neural_Decoding.git'
14
+ VERSION = '0.1.2.dev'
15
+ with open ('requirements.txt' ) as f :
16
+ requirements = f .read ().splitlines ()
17
+
18
+ if __name__ == "__main__" :
19
+ setup (name = DISTNAME ,
20
+ maintainer = MAINTAINER ,
21
+ maintainer_email = MAINTAINER_EMAIL ,
22
+ description = DESCRIPTION ,
23
+ license = LICENSE ,
24
+ version = VERSION ,
25
+ download_url = DOWNLOAD_URL ,
26
+ long_description = open ('README.md' ).read (),
27
+ long_description_content_type = 'text/markdown' ,
28
+ classifiers = [
29
+ 'Intended Audience :: Science/Research' ,
30
+ 'Intended Audience :: Developers' ,
31
+ 'License :: OSI Approved' ,
32
+ 'Programming Language :: Python' ,
33
+ 'Topic :: Software Development' ,
34
+ 'Topic :: Scientific/Engineering' ,
35
+ 'Operating System :: Microsoft :: Windows' ,
36
+ 'Operating System :: POSIX' ,
37
+ 'Operating System :: Unix' ,
38
+ 'Operating System :: MacOS' ,
39
+ ],
40
+ platforms = 'any' ,
41
+ packages = ['Neural_Decoding' ],
42
+ install_requires = requirements ,
43
+ )
0 commit comments