Skip to content

Commit

Permalink
Updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Javinator9889 committed Aug 31, 2018
1 parent b30b2e4 commit 69c6865
Show file tree
Hide file tree
Showing 2 changed files with 85 additions and 62 deletions.
139 changes: 79 additions & 60 deletions pyGle/.idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions setup.py
Expand Up @@ -16,6 +16,11 @@
long_description = ''


requirements = ['lxml', 'beautifulsoup4', 'ujson', 'typing']
if version < '3':
requirements.append('futures')


setup(
name='g-pyGle',
version=__version__,
Expand All @@ -28,8 +33,7 @@
long_description=long_description,
long_description_content_type="text/x-rst",
include_package_data=True,
install_requires=['lxml', 'beautifulsoup4', 'ujson', 'futures; python_version <= "2.7"', 'typing'],
setup_requires=['lxml', 'beautifulsoup4', 'ujson', 'futures; python_version <= "2.7"', 'typing'],
install_requires=requirements,
zip_safe=False,
download_url="https://github.com/Javinator9889/pyGle/archive/master.zip",
classifiers=[
Expand Down

0 comments on commit 69c6865

Please sign in to comment.