forked from digitraceslab/niimpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (32 loc) · 1.24 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from os.path import join, dirname
with open("README.md", "r") as fh:
long_description = fh.read()
version_ns = { }
exec(open('niimpy/_version.py').read(), version_ns)
version = version_ns['__version__']
del version_ns
requirementstxt = join(dirname(__file__), "requirements.txt")
requirements = [ line.strip() for line in open(requirementstxt, "r") if line.strip() ]
setup(name='niimpy',
version=version,
description='Behavorial data analysis',
long_description=long_description,
long_description_content_type='text/markdown',
author='Richard Darst',
author_email='rkd@zgib.net',
url='https://github.com/digitraceslab/niimpy',
#packages=['niimpy', 'niimpy.preprocessing', 'niimpy.reading'],
packages=find_packages(where='.'),
package_data={'niimpy': ['sampledata/*.sqlite3', 'sampledata/*.csv']},
include_package_data=True,
python_requires=">=3.6",
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Information Analysis",
],
)