-
Notifications
You must be signed in to change notification settings - Fork 88
/
Copy pathsetup.py
45 lines (42 loc) · 1.52 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
38
39
40
41
42
43
44
45
from pathlib import Path
from setuptools import setup
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="pyentrp",
version="1.0.0",
description="Functions on top of NumPy for computing different types of entropy",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nikdon/pyEntropy",
author="Nikolay Donets",
author_email="[email protected]",
maintainer="Nikolay Donets",
maintainer_email="[email protected]",
license="Apache-2.0",
packages=["pyentrp"],
test_suite="tests.test_entropy",
keywords=[
"python",
"entropy",
"sample entropy",
"multiscale entropy",
"permutation entropy",
"composite multiscale entropy",
"multiscale permutation entropy",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
],
)