Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
metadata-collect-agent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
metadata-collect-agent
Commits
e63cabb5
Commit
e63cabb5
authored
Aug 19, 2020
by
Leo Le Bouter
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add setup script
parent
7d922faa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
+19
-0
main.py
main.py
+2
-0
setup.py
setup.py
+17
-0
No files found.
main.py
View file @
e63cabb5
#!/usr/bin/env python3
# Developed with Python 3.8.5
import
argparse
import
sys
import
os
...
...
setup.py
0 → 100644
View file @
e63cabb5
#!/usr/bin/env python3
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"metadata-collect-agent"
,
version
=
"0.1"
,
packages
=
find_packages
(),
scripts
=
[
"main.py"
],
install_requires
=
[
"pylibacl>=0.5.4"
,
"msgpack>=1.0.0"
,
"urllib3>=1.25.10"
"psutil>=5.7.2"
],
author
=
"Nexedi SA"
,
author_email
=
"leo.le.bouter@nexedi.com"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment