-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
46 lines (41 loc) · 1.55 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
35
36
37
38
39
40
41
42
43
44
45
46
import setuptools
import os
# the setup.py is executed in an environment, therefore files can not be open via relative
cwd = os.path.abspath(os.path.dirname(__file__))
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# attention, the version.txt needs to be added to the MANIFEST.in, otherwise the file is not
# available during build
with open("version.txt", "r", encoding="utf-8") as fh:
version = fh.read()
setuptools.setup(
name="alpaka-job-coverage",
version=version,
author="Simeon Ehrig",
author_email="[email protected]",
description="The library provides everything needed to generate a sparse combination matrix for alpaca-based projects, including a set of general-purpose combination rules.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/alpaka-group/alpaka-job-matrix-library",
project_urls={
"Bug Tracker": "https://github.com/alpaka-group/alpaka-job-matrix-library/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
entry_points={
"console_scripts": ["ajc-validate=alpaka_job_coverage.validate:main"]
},
python_requires=">=3.8",
install_requires=[
"allpairspy == 2.5.0",
"typeguard",
"pyaml",
"types-PyYAML",
"packaging",
],
)