Skip to content

Commit

Permalink
Fixed requirements.
Browse files Browse the repository at this point in the history
  • Loading branch information
SlashGordon committed Aug 3, 2019
1 parent 875d710 commit 4880621
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,7 @@
from setuptools import setup, find_packages

EXCLUDE_FROM_PACKAGES = ['test', 'test.*', 'test*']
VERSION = '1.0.15'

def get_requirements(requirements):
with open(requirements) as requirement_file:
content = requirement_file.readlines()
content = [x.strip() for x in content]
return content

VERSION = '1.0.16'

with open("README.md", "r") as fh:
long_description = fh.read()
Expand All @@ -38,6 +31,7 @@ def get_requirements(requirements):
url="https://github.com/portfolioplus/pytickersymbols",
packages=find_packages('src', exclude=EXCLUDE_FROM_PACKAGES),
install_requires=INSTALL_REQUIRES,
package_data={'': ['data/*.yaml']},
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
Expand Down

0 comments on commit 4880621

Please sign in to comment.