-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
42 lines (39 loc) · 1.16 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
import os
import setuptools
with open(os.path.join(os.path.dirname(__file__), "README.md")) as fh:
long_description = fh.read()
test_requires = [
"pytest>=4.6",
"pytest-cov",
"pylint>=1.6.5",
]
setuptools.setup(
name="diraccfg",
use_scm_version=True,
author="Federico Stagni",
description="DIRAC cfg files reader",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/DIRACGrid/cfg",
packages=setuptools.find_packages("src"),
package_dir={"": "src"},
license="GPL-3.0-only",
test_suite="tests",
setup_requires=["setuptools_scm"],
include_package_data=True,
install_requires=[],
extras_require={
"testing": test_requires,
},
entry_points={
"console_scripts": ["diraccfg=diraccfg.__main__:parseArgs"],
},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
python_requires=">=3.9",
)