Skip to content

Commit

Permalink
Move requirements and load these in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
RicoVZ committed Oct 4, 2019
1 parent dc99f72 commit ba8cabc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
graft socks5man
recursive-exclude * *.pyc *.pyo
include requirements.txt
include socks5man/setupdata/conf/socks5man.conf
include socks5man/setupdata/geodb/extracted/.gitignore
include socks5man/setupdata/geodb/.version
Expand Down
5 changes: 5 additions & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
PySocks==1.5.7
geoip2==2.9.0
SQLAlchemy>=1.3.3, <1.4
click==6.6
alembic>=1.0.7, <1.1
8 changes: 1 addition & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,7 @@
long_description=open("README.rst", "rb").read(),
include_package_data=True,
url="https://github.com/RicoVZ/socks5man",
install_requires=[
"PySocks==1.5.7",
"geoip2==2.9.0",
"SQLAlchemy>=1.3.3, <1.4",
"click==6.6",
"alembic>=1.0.7, <1.1",
],
install_requires=[r.strip() for r in open("requirements.txt", "r").readlines()],
python_requires=">=2.7, <3.0",
extras_require={
":sys_platform == 'win32'": [
Expand Down

0 comments on commit ba8cabc

Please sign in to comment.