-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 905 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
import setuptools, os
with open(os.path.join(os.path.dirname(__file__), "bwpy", "__init__.py"), "r") as f:
for line in f:
if "__version__ = " in line:
exec(line.strip())
break
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bwpy",
version=__version__,
author="Robin De Schepper",
author_email="[email protected]",
description="Library to interact with BrainWave's BRW and BXR files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Helveg/bwpy",
license="GPLv3",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
install_requires=["h5py", "numpy"],
extras_require={"dev": ["sphinx", "furo"]},
)