forked from camacesco/catede
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 807 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 807 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
data_files_to_include = [('', ['README.md', 'LICENSE'])]
setuptools.setup(
name='catede',
url="https://github.com/camacesco/catede",
author="Francesco Camaglia",
author_email="francesco.camaglia@phys.ens.fr",
long_description=long_description,
long_description_content_type="text/markdown",
version='0.1.00',
description='Python package for entropy and divergence estimation.',
license="GNU GPLv3",
python_requires='>=3.5',
install_requires = [
"numpy",
"pandas",
"scipy",
"mpmath",
"tqdm",
"matplotlib",
],
packages=setuptools.find_packages(),
data_files = data_files_to_include,
include_package_data=True,
)