-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·34 lines (33 loc) · 1.05 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
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="lir",
version="0.1.28",
description="scripts for calculating likelihood ratios",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/NetherlandsForensicInstitute/lir",
author="Netherlands Forensic Institute",
author_email="[email protected]",
packages=find_packages(),
setup_requires=["pytest-runner"],
tests_require=["pytest"],
install_requires=[
"matplotlib",
"numpy",
"scipy",
"scikit-learn>=1.4",
"tqdm",
"pandas",
],
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)