Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
J
jass
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container registry
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Statistical-Genetics
jass
Commits
31511da5
Commit
31511da5
authored
3 years ago
by
Bryan BRANCOTTE
Browse files
Options
Downloads
Patches
Plain Diff
get install_requires list from requirements.txt
parent
0b04a136
Branches
main
No related tags found
3 merge requests
!52
Bring all changes from dev into master
,
!51
merge fast-api into dev
,
!45
Deploy app in kubernetes
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
setup.py
+10
-13
10 additions, 13 deletions
setup.py
with
10 additions
and
13 deletions
setup.py
+
10
−
13
View file @
31511da5
# coding: utf-8
# coding: utf-8
import
os
,
sys
import
os
import
pathlib
import
pkg_resources
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
NAME
=
"
jass
"
NAME
=
"
jass
"
...
@@ -10,17 +13,11 @@ SETUP_DIR = os.path.dirname(__file__)
...
@@ -10,17 +13,11 @@ SETUP_DIR = os.path.dirname(__file__)
README
=
os
.
path
.
join
(
SETUP_DIR
,
'
README.md
'
)
README
=
os
.
path
.
join
(
SETUP_DIR
,
'
README.md
'
)
readme
=
open
(
README
).
read
()
readme
=
open
(
README
).
read
()
with
pathlib
.
Path
(
'
requirements.txt
'
).
open
()
as
requirements_txt
:
REQUIRES
=
[
REQUIRES
=
[
"
flask-smorest
"
,
str
(
requirement
)
"
aiohttp
"
,
for
requirement
"
python_dateutil
"
,
in
pkg_resources
.
parse_requirements
(
requirements_txt
)
"
setuptools
"
,
"
numpy
"
,
"
pandas
"
,
"
tables
"
,
"
scipy
"
,
"
matplotlib
"
,
"
celery
"
,
]
]
setup
(
setup
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment