Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
common_helper_mongo
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fact-gitdep
common_helper_mongo
Commits
d8a9f12c
Commit
d8a9f12c
authored
Mar 08, 2017
by
Peter Weidenbach
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
non-git install bug fixed
parent
59ec1590
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletions
+7
-1
setup.py
setup.py
+7
-1
No files found.
setup.py
View file @
d8a9f12c
...
...
@@ -2,9 +2,15 @@ import os
import
subprocess
from
setuptools
import
setup
,
find_packages
try
:
VERSION
=
subprocess
.
check_output
([
'git'
,
'describe'
,
'--always'
],
cwd
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
.
strip
()
.
decode
(
'utf-8'
)
except
Exception
:
VERSION
=
"0.x"
setup
(
name
=
"common_helper_mongo"
,
version
=
subprocess
.
check_output
([
'git'
,
'describe'
,
'--always'
],
cwd
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
)))
.
strip
()
.
decode
(
'utf-8'
)
,
version
=
VERSION
,
packages
=
find_packages
(),
install_requires
=
[
'pymongo >= 3.2'
...
...
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