1
0
mirror of https://github.com/balkian/balkian-pyproject.git synced 2024-11-16 17:52:28 +00:00

Added gitignore

This commit is contained in:
J. Fernando Sánchez 2017-01-10 14:30:13 +01:00
parent a74f09e5e9
commit 46839a07e5

View File

@ -26,9 +26,10 @@ setup(
description='''{{cookiecutter.project_short_description}}''',
author='{{cookiecutter.full_name}}',
author_email='{{cookiecutter.email}}',
url='https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.repo_name }}', # use the URL to the github repo
download_url='https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.repo_name }}/archive/{}.tar.gz'.format(
__version__),
# use the URL to the github repo
url='https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.repo_name }}',
download_url=('https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.repo_name }}'
'/archive/{}.tar.gz'.format(__version__)),
package_dir={'{{ cookiecutter.repo_name }}': '{{ cookiecutter.repo_name }}'},
keywords='{{ cookiecutter.repo_name }}',
install_requires=install_reqs,
@ -46,5 +47,5 @@ setup(
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
],
)