-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (37 loc) · 1.28 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
from pathlib import Path
import setuptools
# Parse the requirements.txt file
with open("requirements.txt", "r") as f:
install_requires = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
about = {}
ROOT_DIR = Path(__file__).resolve().parent
PACKAGE_DIR = ROOT_DIR / "likelihood"
with open(PACKAGE_DIR / "VERSION") as f:
_version = f.read().strip()
about["__version__"] = _version
setuptools.setup(
name="likelihood",
version=about["__version__"],
author="J. A. Moreno-Guerra",
author_email="[email protected]",
maintainer="Jafet Castañeda",
maintainer_email="[email protected]",
description="A package that performs the maximum likelihood algorithm.",
py_modules=["likelihood"],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jzsmoreno/likelihood/",
packages=setuptools.find_packages(),
install_requires=install_requires,
extras_require={
"full": ["networkx", "pyvis", "tensorflow==2.15.0", "keras-tuner", "scikit-learn"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10",
)