Shorten the setup.py for the copycat module. NFC.
This commit is contained in:
7
setup.py
7
setup.py
@ -2,14 +2,13 @@
|
|||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
readme = open('README.md').read()
|
|
||||||
requirements = [l.strip() for l in open('requirements.txt').readlines()]
|
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='copycat',
|
name='copycat',
|
||||||
version='0.0.1',
|
version='0.0.1',
|
||||||
packages=['copycat'],
|
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']},
|
package_data={'': ['LICENSE']},
|
||||||
|
|
||||||
# metadata for upload to PyPI
|
# metadata for upload to PyPI
|
||||||
|
|||||||
Reference in New Issue
Block a user