forked from AdaCore/e3-testsuite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (39 loc) · 1.41 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
from setuptools import setup, find_packages
import os
install_requires = ["e3-core"]
# Get e3 version from the VERSION file.
version_file = os.path.join(os.path.dirname(__file__), "VERSION")
with open(version_file) as f:
version = f.read().strip()
with open(os.path.join(os.path.dirname(__file__), "README.md")) as f:
long_description = f.read()
setup(
name="e3-testsuite",
version=version,
description="E3 testsuite",
license="GPLv3",
author="AdaCore",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Build Tools",
],
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=install_requires,
namespace_packages=["e3"],
entry_points={
"console_scripts": [
"e3-test = e3.testsuite.main:main",
"e3-testsuite-report = e3.testsuite.report.display:main",
"e3-find-skipped-tests = e3.testsuite.find_skipped_tests:main",
"e3-run-test-fragment = e3.testsuite.fragment:run_fragment",
"e3-opt-parser = e3.testsuite.optfileparser:main",
]
},
)