2016-pycon-tutorial
2016-pycon-tutorial copied to clipboard
Creating a setup.py
Here's a stub for setup.py. You'll have to edit the name field, as PyPI won't accept duplicate project names. You'll create this file in your project root.
from setuptools import setup
setup(name='projy-mc-proj',
version='0.1',
description='test stuff for pycon tutorial',
py_modules=['wordcount_lib'],
scripts=['wordcount'],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
)