Shorten the setup.py for the copycat module. NFC.

This commit is contained in:
Arthur O'Dwyer
2017-04-22 22:46:22 -07:00
parent 9a2a1d6010
commit 34157be1f9
2 changed files with 3 additions and 4 deletions

View File

View File

@ -2,14 +2,13 @@
from setuptools import setup
readme = open('README.md').read()
requirements = [l.strip() for l in open('requirements.txt').readlines()]
setup(
name='copycat',
version='0.0.1',
packages=['copycat'],
install_requires=[l.strip() for l in open('requirements.txt').readlines()],
install_requires=[
# pip requirements go here; at the moment there are none
],
package_data={'': ['LICENSE']},
# metadata for upload to PyPI