-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (25 loc) · 950 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
from setuptools import setup, find_packages
from glob import glob
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="lfp_tools",
version="0.0.1",
author="John Ferré",
author_email="[email protected]",
description="Useful tools that pertain to wcst lfp data",
long_description=long_description,
url="https://github.com/learning-2-learn/lfp_tools",
packages=find_packages(),
package_data={'lfp_tools': glob('lfp_tools/data/*')},
include_package_data=True,
classifiers=[
"Programming language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating system :: OS Independent",
"Intended audience :: Science/Research",
"Topic :: Scientific/Engineering"
],
python_requires='>=3.8',
install_requires=["numpy>=1.8.1", "matplotlib", "pandas", "aiobotocore>=1.0.1", "h5py", "s3fs", "tqdm", "dask", "dask_gateway"]
)