forked from CINPLA/pyopenephys
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 951 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
33
34
35
36
from setuptools import setup, find_packages
d = {}
exec(open("pyopenephys/version.py").read(), None, d)
version = d['version']
long_description = open("README.md").read()
entry_points = None
setup(
name="pyopenephys",
version=version,
author="Alessio Buccino",
author_email="[email protected]",
description="Python package for parsing Open Ephys data.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/CINPLA/py-open-ephys",
packages=find_packages(),
entry_points=entry_points,
include_package_data=True,
install_requires=[
'numpy',
'scipy',
'pyyaml',
'quantities',
'xmltodict',
'natsort'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
)