FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-lib-stats/setup.py at main · fmassa/python-lib-stats · GitHub
fmassa
/
python-lib-stats
Public
Notifications
You must be signed in to change notification settings
Fork
6
Star
14
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
python-lib-stats
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
14 lines (13 loc) · 491 Bytes
Breadcrumbs
python-lib-stats
/
setup.py
Copy path
File metadata and controls
14 lines (13 loc) · 491 Bytes
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
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"pylibstats"
,
description
=
"Find usage statistics (imports, function calls, attribute access) for Python code-bases"
,
url
=
"https://github.com/fmassa/python-lib-stats"
,
version
=
'0.0.1'
,
author
=
'Francisco Massa'
,
author_email
=
'fmassa@fb.com'
,
license
=
"BSD"
,
python_requires
=
">=3.6"
,
packages
=
find_packages
(
exclude
=
(
"tests"
,)),
entry_points
=
{
'console_scripts'
: [
'pylibstats = pylibstats:main'
]},
)
Back
|
FazBrowse Home
|
New Git URL