-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
37 lines (32 loc) · 1.01 KB
/
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
31
32
33
34
35
36
37
from pathlib import Path
from setuptools import setup, find_packages
requirements = ["keras <= 2.15",
"tensorflow",
"scikit-learn",
"numpy >=1.8",
"pandas",
"matplotlib", # >= 3.1.1",
"astropy >=1.3",
"scipy >=0.14",
]
data = {"pycadet": ["*.hdf5",]}
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
MAJOR = "0"
MINOR = "2"
MICRO = "0"
version = "%s.%s.%s" % (MAJOR, MINOR, MICRO)
setup(
name="pycadet",
version=version,
author="Tomas Plsek",
author_email="plsek@physics.muni.cz",
description="Cavity Detection Tool",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/tomasplsek/CADET",
install_requires=requirements,
packages=find_packages(exclude=("docs", "training_testing", "examples",)),
package_data=data,
include_package_data=False,
)