Just use setup.py

(don't keep a second copy in `requirements.txt`)
This commit is contained in:
William Minchin 2014-01-28 15:20:13 -07:00
parent 95b34e1977
commit 7065cafe01
3 changed files with 5 additions and 8 deletions

4
.gitignore vendored
View file

@ -33,3 +33,7 @@ obj
*.pyproj *.pyproj
*.sln *.sln
*.suo *.suo
# virtaulenv
env/
env*/

View file

@ -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

View file

@ -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],