-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (27 loc) · 964 Bytes
/
setup.py
File metadata and controls
32 lines (27 loc) · 964 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
31
32
import pathlib
from setuptools import find_packages, setup
AUTHORS = [
("Chris Smith", "c.j.smith1@leeds.ac.uk"),
]
here = pathlib.Path(__file__).parent.resolve()
# Get the long description from the README file
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="fair_calibrate",
version="1.6.0",
description="Calibration mechanism for fair",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/chrisroadmap/fair-calibrate",
author=", ".join([author[0] for author in AUTHORS]),
author_email=", ".join([author[1] for author in AUTHORS]),
license="MIT",
package_dir={"": "src"},
packages=find_packages(where="src"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3.11",
],
python_requires=">=3.8, <4",
)