-
Notifications
You must be signed in to change notification settings - Fork 41
/
setup.py
26 lines (25 loc) · 976 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
from setuptools import setup
setup(
name='cookiecutter-conda-python',
packages=[],
version='0.1.0',
description='Cookiecutter template for a Python conda package',
author='Continuum Analytics, Inc.',
author_email='conda@continuum.io',
url='https://github.com/conda/cookiecutter-conda-package',
keywords=['cookiecutter', 'template', 'package', 'conda', 'python'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
],
)