Files
cookiecutter-data-science/setup.py
T
2021-04-02 18:14:51 -04:00

55 lines
2.0 KiB
Python

from pathlib import Path
from setuptools import setup, find_packages
project_path = Path(__file__).parent
long_description = open(project_path / 'README.md').read()
setup(
name='cookiecutter-data-science',
version='0.2.0',
description='A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.',
long_description=long_description,
long_description_content_type='text/markdown',
author='DrivenData',
author_email='info@drivendata.org',
url='https://drivendata.github.io/cookiecutter-data-science/',
project_urls={
'Homepage': 'https://drivendata.github.io/cookiecutter-data-science/',
'Source Code': 'https://github.com/drivendata/cookiecutter-data-science/',
'DrivenData': 'http://drivendata.co'
},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
# Pick your license as you wish (should match "license" above)
# 'License :: OSI Approved :: MIT License',
'License :: No license file'
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
python_requires='>=3.6',
install_requires=['cookiecutter', 'click'],
entry_points={
'console_scripts': [
'ccds=ccds.__main__:main',
],
},
packages=find_packages(exclude=['dist', 'docs', 'tests']),
)