-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (28 loc) · 790 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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="neural-data-analysis",
version="0.0.1",
author="Kevin J. M. Le",
author_email="[email protected]",
description="Neural data analysis tools.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kvnmei/neural_data_analysis",
packages=setuptools.find_packages(),
install_requires=[
"numpy",
"pandas",
"scikit-learn",
# "PIL",
"matplotlib",
"seaborn",
],
include_package_data=True,
python_requires=">=3.6",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
)