-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
79 lines (77 loc) · 2.61 KB
/
setup.py
File metadata and controls
79 lines (77 loc) · 2.61 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.MD").read_text(encoding="utf-8")
setup(
name="devtooling-cli",
version="0.3.0",
packages=find_packages(where='src'),
package_dir={'': 'src'},
include_package_data=True,
package_data={
'devtooling': ['config/*.json'],
},
install_requires=[
'rich>=10.0.0',
'questionary>=1.10.0',
'pyfiglet>=0.8.post1',
'colorama>=0.4.4',
'appdirs>=1.4.4',
'requests>=2.25.1',
],
entry_points={
'console_scripts': [
'devtool=devtooling.main:main',
],
},
author="KloutDevs",
author_email="schmidtnahuel09@gmail.com",
description="A CLI tool for project analysis and management",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/KloutDevs/DevTooling",
project_urls={
'Bug Reports': 'https://github.com/KloutDevs/DevTooling/issues',
'Source': 'https://github.com/KloutDevs/DevTooling',
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Version Control :: Git",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Documentation",
"Topic :: System :: Monitoring",
"Framework :: Pytest",
"Intended Audience :: Information Technology",
"Natural Language :: English",
],
python_requires=">=3.7",
keywords=[
'development',
'cli',
'project-management',
'utilities',
'project-detection',
'git-tools',
'dependency-management',
'code-analysis',
'testing-tools',
'documentation-generation',
'docker-tools',
'development-workflow',
'project-structure',
'automation-tools',
'developer-tools'
]
)