FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
polydepend/setup.py at main · Simacoder/polydepend · GitHub
Simacoder
/
polydepend
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
2
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
polydepend
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (50 loc) · 1.49 KB
Breadcrumbs
polydepend
/
setup.py
Copy path
File metadata and controls
58 lines (50 loc) · 1.49 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
setuptools
import
setup
,
find_packages
setup
(
name
=
'polydepend'
,
version
=
'1.2.1'
,
packages
=
find_packages
(
where
=
'src'
),
package_dir
=
{
''
:
'src'
},
# Dependencies
install_requires
=
[
'requests>=2.25.0'
,
'packaging'
,
# Handles version parsing
],
# Development dependencies
extras_require
=
{
'dev'
: [
'pytest'
,
'coverage'
,
'black'
,
'mypy'
]
},
# CLI and GUI entry points
entry_points
=
{
'console_scripts'
: [
'polydepend-cli=cli:main'
,
'polydepend-gui=gui:main'
]
},
# Metadata
author
=
'Simanga Mchunu'
,
author_email
=
'datawithsima@gmail.com'
,
description
=
'Multi-language Dependency Management Tool'
,
long_description
=
open
(
'README.md'
).
read
(),
long_description_content_type
=
'text/markdown'
,
url
=
'https://github.com/Simacoder/polydepend'
,
# Classifiers
classifiers
=
[
'Development Status :: 3 - Alpha'
,
'Intended Audience :: Developers'
,
'License :: OSI Approved :: MIT License'
,
'Programming Language :: Python :: 3.7'
,
'Programming Language :: Python :: 3.8'
,
'Programming Language :: Python :: 3.9'
,
'Topic :: Software Development :: Libraries :: Python Modules'
,
'Topic :: System :: Software Distribution'
],
# Requirements
python_requires
=
'>=3.7'
,
# Include additional files specified in MANIFEST.in
include_package_data
=
True
,
)
Back
|
FazBrowse Home
|
New Git URL