Create and install src as Python package

This commit is contained in:
Peter Bull 2018-03-22 17:39:34 -07:00
parent 95a6991ec7
commit 12a6e8a1f9
6 changed files with 14 additions and 0 deletions

View File

@ -1,3 +1,7 @@
# local package
-e .
# external requirements
click
Sphinx
coverage

View File

@ -0,0 +1,10 @@
from setuptools import find_packages, setup
setup(
name='src',
packages=find_packages(),
version='0.0.1',
description='{{ cookiecutter.description }}',
author='{{ cookiecutter.author_name }}',
license='{% if cookiecutter.open_source_license == 'MIT' %}MIT{% elif cookiecutter.open_source_license == 'BSD-3-Clause' %}BSD-3{% endif %}',
)