-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
31 lines (27 loc) · 896 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup_args = dict(
name="pycosa",
version="0.1.6",
author="Stefan Mühlbauer",
author_email="[email protected]",
description="Configuration sampling toolbox in Python.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/smba/pycosa-toolbox",
classifiers=[
"Programming Language :: Python :: 3",
"License :: AGPL License",
"Operating System :: OS Independent",
],
python_requires=">=3.8",
# ehem
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
)
with open("requirements.txt") as f:
required = f.read().splitlines()
if __name__ == "__main__":
setuptools.setup(**setup_args, install_requires=required)