-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (46 loc) · 1.66 KB
/
setup.py
File metadata and controls
58 lines (46 loc) · 1.66 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
from distutils.core import setup
from pathlib import Path
REPOSITORY = Path(__file__).resolve().parent
REQUIREMENTS_FILE = REPOSITORY.joinpath('requirements.txt')
README_FILE = REPOSITORY.joinpath("README.md")
with REQUIREMENTS_FILE.open(mode='r') as requirements:
install_requires = requirements.read().splitlines()
with README_FILE.open(mode='r') as readme:
long_description = readme.read()
setup(
name="InclusionMap",
version="1.5.2",
description=(
"A tool for generating the inclusion map of a programming project. "
"Several programming languages are supported."
),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
],
keywords='dependency graph map programming project tool',
author="Victor Laügt",
author_email='victorlaugtdev@gmail.com',
url="https://github.com/VictorLaugt/InclusionMap",
license='GPLv3',
packages=[
'inc_map',
'inc_map.back',
'inc_map.back.common_features',
'inc_map.back.support_c',
'inc_map.back.support_python'
],
install_requires=install_requires,
python_requires=">=3.9",
entry_points={
"console_scripts": ["inclusionmap = inc_map.__main__:main"],
},
include_package_data=True,
)