Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

setup.py 1.9 KB

You have to be logged in to leave a comment. Sign In
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
  1. from pathlib import Path
  2. from setuptools import setup, find_packages
  3. project_path = Path(__file__).parent
  4. long_description = open(project_path / 'README.md').read()
  5. setup(
  6. name='cookiecutter-data-science',
  7. version='0.2.0',
  8. description='A logical, reasonably standardized, but flexible project structure for doing and sharing data science work.',
  9. long_description=long_description,
  10. long_description_content_type='text/markdown',
  11. author='DrivenData',
  12. author_email='info@drivendata.org',
  13. url='https://drivendata.github.io/cookiecutter-data-science/',
  14. project_urls={
  15. 'Homepage': 'https://drivendata.github.io/cookiecutter-data-science/',
  16. 'Source Code': 'https://github.com/drivendata/cookiecutter-data-science/',
  17. 'DrivenData': 'http://drivendata.co'
  18. },
  19. classifiers=[
  20. # How mature is this project? Common values are
  21. # 3 - Alpha
  22. # 4 - Beta
  23. # 5 - Production/Stable
  24. 'Development Status :: 3 - Alpha',
  25. # Indicate who your project is intended for
  26. 'Intended Audience :: Developers',
  27. 'Intended Audience :: Science/Research',
  28. # Pick your license as you wish (should match "license" above)
  29. 'License :: OSI Approved :: MIT License',
  30. # Specify the Python versions you support here. In particular, ensure
  31. # that you indicate whether you support Python 2, Python 3 or both.
  32. 'Programming Language :: Python :: 3',
  33. 'Programming Language :: Python :: 3.5',
  34. 'Programming Language :: Python :: 3.6',
  35. 'Programming Language :: Python :: 3.7',
  36. 'Topic :: Scientific/Engineering',
  37. 'Topic :: Scientific/Engineering :: Artificial Intelligence',
  38. ],
  39. python_requires='>=3.5',
  40. install_requires=['cookiecutter', 'click'],
  41. entry_points={
  42. 'console_scripts': [
  43. 'ccds=ccds.__main__:main',
  44. ],
  45. },
  46. packages=find_packages(exclude=['dist', 'docs', 'tests']),
  47. )
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...