mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 08:38:32 +02:00
Just use setup.py
(don't keep a second copy in `requirements.txt`)
This commit is contained in:
parent
95b34e1977
commit
7065cafe01
3 changed files with 5 additions and 8 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -33,3 +33,7 @@ obj
|
||||||
*.pyproj
|
*.pyproj
|
||||||
*.sln
|
*.sln
|
||||||
*.suo
|
*.suo
|
||||||
|
|
||||||
|
# virtaulenv
|
||||||
|
env/
|
||||||
|
env*/
|
||||||
|
|
|
@ -1,7 +0,0 @@
|
||||||
parsedatetime >= 1.2
|
|
||||||
pytz >= 2013b
|
|
||||||
pycrypto >= 2.6
|
|
||||||
argparse==1.2.1
|
|
||||||
tzlocal >= 1.0
|
|
||||||
keyring==3.0.5
|
|
||||||
python-dateutil==2.2
|
|
2
setup.py
2
setup.py
|
@ -72,7 +72,7 @@ setup(
|
||||||
install_requires = [
|
install_requires = [
|
||||||
"parsedatetime>=1.2",
|
"parsedatetime>=1.2",
|
||||||
"pytz>=2013b",
|
"pytz>=2013b",
|
||||||
"tzlocal==1.0",
|
"tzlocal>=1.0",
|
||||||
"keyring>=3.3",
|
"keyring>=3.3",
|
||||||
"python-dateutil>=2.2"
|
"python-dateutil>=2.2"
|
||||||
] + [p for p, cond in conditional_dependencies.items() if cond],
|
] + [p for p, cond in conditional_dependencies.items() if cond],
|
||||||
|
|
Loading…
Add table
Reference in a new issue