Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
open-source
hggitforge
Commits
546cda4f4a14
Commit
ba7dd03a
authored
Oct 14, 2020
by
Elouan Martinet
Browse files
Add basic setup.py
parent
99dbf7c26ffc
Changes
1
Hide whitespace changes
Inline
Side-by-side
setup.py
0 → 100644
View file @
546cda4f
#!/usr/bin/env python
"""hggithub setup module"""
from
setuptools
import
find_packages
,
setup
setup
(
name
=
"hggithub"
,
version
=
"0.1.0"
,
author
=
"LOGILAB S.A. (Paris, FRANCE)"
,
author_email
=
"contact@logilab.fr"
,
packages
=
find_packages
(
exclude
=
[
'test'
]),
extra_require
=
{
# these dependencies can be installed using system packages
"Pypi dependencies"
:
[
"mercurial"
,
"hg-git"
],
},
)
Write
Preview
Supports
Markdown
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