mirror of
https://github.com/wassname/cookiecutter-data-science.git
synced 2026-09-12 12:21:44 +08:00
11 lines
297 B
Python
11 lines
297 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name='{{ cookiecutter.project_name.lower().replace(' ', '_') }}',
|
|
packages=find_packages(),
|
|
version='0.1.0',
|
|
description='{{ cookiecutter.description }}',
|
|
author='{{ cookiecutter.author_name }}',
|
|
license='proprietary',
|
|
)
|