2016-pycon-tutorial icon indicating copy to clipboard operation
2016-pycon-tutorial copied to clipboard

Creating a setup.py

Open ctb opened this issue 9 years ago • 0 comments

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',
      ],
)

ctb avatar May 28 '16 16:05 ctb