Change package name vs repository name
This commit is contained in:
parent
52283f711b
commit
10f74be073
@ -1,10 +1,9 @@
|
|||||||
{
|
{
|
||||||
"project_name": "project_name",
|
"project_name": "project_name",
|
||||||
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
|
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
|
||||||
|
"package_name": "{{ cookiecutter.package_name.lower().replace(' ', '_') }}",
|
||||||
"author_name": "Your name (or your organization/company/team)",
|
"author_name": "Your name (or your organization/company/team)",
|
||||||
"description": "A short description of the project.",
|
"description": "A short description of the project.",
|
||||||
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"],
|
"open_source_license": ["MIT", "BSD-3-Clause", "No license file"],
|
||||||
"s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
|
|
||||||
"aws_profile": "default",
|
|
||||||
"python_interpreter": ["python3", "python"]
|
"python_interpreter": ["python3", "python"]
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
from setuptools import find_packages, setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='src',
|
name='{{ cookiecutter.package_name }}',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
version='0.1.0',
|
version='0.1.0',
|
||||||
description='{{ cookiecutter.description }}',
|
description='{{ cookiecutter.description }}',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user