2018-03-22 17:39:34 -07:00
|
|
|
from setuptools import find_packages, setup
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='src',
|
|
|
|
packages=find_packages(),
|
2018-07-19 08:07:08 -07:00
|
|
|
version='0.1.0',
|
2018-03-22 17:39:34 -07:00
|
|
|
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 %}',
|
|
|
|
)
|