-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·58 lines (56 loc) · 1.63 KB
/
setup.py
File metadata and controls
executable file
·58 lines (56 loc) · 1.63 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bmtool",
version="0.8.4.3",
author="Neural Engineering Laboratory at the University of Missouri",
author_email="gregglickert@mail.missouri.edu",
description="BMTool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cyneuro/bmtool",
download_url="",
license="MIT",
install_requires=[
"neuron==8.2.4", # hard code version
"bmtk",
"click",
"clint",
"h5py",
"matplotlib",
"networkx",
"numpy",
"pandas",
"questionary",
"pynmodlt",
"xarray",
"fooof",
"requests",
"pyyaml",
"PyWavelets",
"numba",
"tqdm",
],
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
],
packages=find_packages(), # Automatically finds all packages
include_package_data=True,
extras_require={
"dev": [
"ruff>=0.1.0",
"pyright>=1.1.0",
"pre-commit>=3.0.0",
]
},
entry_points={"console_scripts": ["bmtool = bmtool.manage:cli"]},
)