Skip to content

Commit

Permalink
Miscellaneous tidy-up to package's dependency handling
Browse files Browse the repository at this point in the history
  • Loading branch information
saxbophone committed Nov 2, 2018
1 parent 9f4b2c9 commit 8acc839
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
1 change: 0 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
.PHONY: install-deps clean lint test cover tests

install-deps:
pip install -r python_requirements/base.txt
pip install -r python_requirements/test.txt

clean:
Expand Down
2 changes: 0 additions & 2 deletions python_requirements/base.txt

This file was deleted.

12 changes: 4 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,7 @@ def parse_requirements(filepath):
setup(
name='basest',
version='0.7.3.dev1',
description=(
'Arbitrary base binary-to-text encoder (any base to any base)'
),
description='Arbitrary base binary-to-text encoder (any base to any base)',
long_description=open(
os.path.join(os.path.dirname(__file__), 'README.md')
).read(),
Expand Down Expand Up @@ -58,11 +56,9 @@ def parse_requirements(filepath):
'Topic :: Utilities',
],
keywords='number base encoder decoder conversion encoding decoding',
packages=find_packages(),
install_requires=parse_requirements('python_requirements/base.txt'),
extras_require={
'test': parse_requirements('python_requirements/test.txt'),
},
packages=find_packages(exclude=['tests']),
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*',
install_requires=[],
package_data={
'': ['README.md', 'LICENSE'],
},
Expand Down

0 comments on commit 8acc839

Please sign in to comment.