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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
- 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',
- # 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.5',
- 'Programming Language :: Python :: 3.6',
- 'Programming Language :: Python :: 3.7',
- 'Topic :: Scientific/Engineering',
- 'Topic :: Scientific/Engineering :: Artificial Intelligence',
- ],
- python_requires='>=3.5',
- install_requires=['cookiecutter', 'click'],
- entry_points={
- 'console_scripts': [
- 'ccds=ccds.__main__:main',
- ],
- },
- packages=find_packages(exclude=['dist', 'docs', 'tests']),
- )
|