-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 723 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 723 Bytes
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
#!/usr/bin/env python
import imp
import sys
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
sys.exit("Sorry, Python < 3.6 is not supported")
VERSION = imp.load_source("", "matplotlib_ephys/version.py").__version__
# Read the contents of the README file
with open("README.md", encoding="utf-8") as f:
README = f.read()
setup(
name="matplotlib-ephys",
version=VERSION,
description="Electrophysiology plotting functions",
long_description=README,
long_description_content_type="text/markdown",
license="GNU General Public License",
python_requires=">=3.6",
install_requires=[
"numpy",
"matplotlib",
],
packages=find_packages(),
)