forked from mammoth-eu/mammoth-commons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (27 loc) · 1.04 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
import setuptools
# Developer self-reminder for uploading in pypi:
# - install: wheel, twine
# - build : python setup.py bdist_wheel
# - deploy : twine upload dist/*
# https://kynan.github.io/blog/2020/05/23/how-to-upload-your-package-to-the-python-package-index-pypi-test-server
with open("README.md", "r") as file:
long_description = file.read()
with open("requirements.txt", "r") as file:
requirements = file.read().splitlines()
setuptools.setup(
name="MAMMOth-commons",
version="0.0.19",
author="Emmanouil (Manios) Krasanakis",
author_email="maniospas@hotmail.com",
description="Component interfaces of the MAMMOth fairness toolkit.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mammoth-eu/mammoth-commons",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=requirements,
)