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 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from setuptools import setup
  4. with open('README.md') as readme_file:
  5. readme = readme_file.read()
  6. requirements = [
  7. 'Click>=7.0',
  8. 'GitPython>=1.0.0',
  9. 'gql>=0.1.0',
  10. 'nvidia-ml-py3>=7.352.0',
  11. 'python-dateutil>=2.6.1',
  12. 'requests>=2.0.0',
  13. 'shortuuid>=0.5.0',
  14. 'six>=1.10.0',
  15. 'watchdog>=0.8.3',
  16. 'psutil>=5.0.0',
  17. 'sentry-sdk>=0.4.0',
  18. 'subprocess32>=3.5.3',
  19. 'docker-pycreds>=0.4.0',
  20. 'configparser>=3.8.1',
  21. # Removed until we bring back the board
  22. # 'flask-cors>=3.0.3',
  23. # 'flask-graphql>=1.4.0',
  24. # 'graphene>=2.0.0',
  25. ]
  26. test_requirements = [
  27. 'mock>=2.0.0',
  28. 'tox-pyenv>=1.0.3'
  29. ]
  30. kubeflow_requirements = ['kubernetes', 'minio', 'google-cloud-storage', 'sh']
  31. setup(
  32. name='wandb',
  33. version='0.8.15',
  34. description="A CLI and library for interacting with the Weights and Biases API.",
  35. long_description=readme,
  36. long_description_content_type="text/markdown",
  37. author="Weights & Biases",
  38. author_email='support@wandb.com',
  39. url='https://github.com/wandb/client',
  40. packages=[
  41. 'wandb'
  42. ],
  43. package_dir={'wandb': 'wandb'},
  44. entry_points={
  45. 'console_scripts': [
  46. 'wandb=wandb.cli:cli',
  47. 'wb=wandb.cli:cli',
  48. 'wanbd=wandb.cli:cli',
  49. 'wandb-docker-run=wandb.cli:docker_run'
  50. ]
  51. },
  52. include_package_data=True,
  53. install_requires=requirements,
  54. license="MIT license",
  55. zip_safe=False,
  56. keywords='wandb',
  57. python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
  58. classifiers=[
  59. 'Development Status :: 5 - Production/Stable',
  60. 'Intended Audience :: Developers',
  61. 'Intended Audience :: Science/Research',
  62. 'License :: OSI Approved :: MIT License',
  63. 'Natural Language :: English',
  64. 'Programming Language :: Python :: 2',
  65. 'Programming Language :: Python :: 2.7',
  66. 'Programming Language :: Python :: 3',
  67. 'Programming Language :: Python :: 3.4',
  68. 'Programming Language :: Python :: 3.5',
  69. 'Programming Language :: Python :: 3.6',
  70. 'Programming Language :: Python :: 3.7',
  71. 'Topic :: Scientific/Engineering :: Artificial Intelligence',
  72. 'Topic :: Software Development :: Libraries :: Python Modules',
  73. 'Topic :: System :: Logging',
  74. 'Topic :: System :: Monitoring'
  75. ],
  76. test_suite='tests',
  77. tests_require=test_requirements,
  78. extras_require={
  79. 'kubeflow': kubeflow_requirements
  80. }
  81. )
Tip!

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

Comments

Loading...