-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
31 lines (26 loc) · 982 Bytes
/
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
"""
This file is internal for creating a proper package.
Build package with `python3 setup.py sdist bdist_wheel`
Upload with `python3 -m twine upload dist/aemeasure-X.X.X-py3-none-any.whl `
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aemeasure",
version="0.2.9",
author="TU Braunschweig, IBR, Algorithms Group (Dominik Krupke)",
author_email="krupke@ibr.cs.tu-bs.de",
description="Simple tools for logging experiments in algorithm engineering",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/d-krupke/AeMeasure",
packages=[p for p in setuptools.find_packages() if "aemeasure" in p],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
],
python_requires=">=3.7",
install_requires=["pandas"],
)