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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  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>=6.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. 'sentry-sdk==0.4.0',
  17. # Removed until we bring back the board
  18. #'flask-cors>=3.0.3',
  19. #'flask-graphql>=1.4.0',
  20. #'graphene>=2.0.0',
  21. ]
  22. test_requirements = [
  23. 'mock>=2.0.0',
  24. 'tox-pyenv>=1.0.3'
  25. ]
  26. setup(
  27. name='wandb',
  28. version='0.6.26',
  29. description="A CLI and library for interacting with the Weights and Biases API.",
  30. long_description=readme,
  31. long_description_content_type="text/markdown",
  32. author="Weights & Biases",
  33. author_email='support@wandb.com',
  34. url='https://github.com/wandb/client',
  35. packages=[
  36. 'wandb',
  37. ],
  38. package_dir={'wandb':
  39. 'wandb'},
  40. entry_points={
  41. 'console_scripts': [
  42. 'wandb=wandb.cli:cli',
  43. 'wb=wandb.cli:cli',
  44. 'wanbd=wandb.cli:cli'
  45. ]
  46. },
  47. include_package_data=True,
  48. install_requires=requirements,
  49. license="MIT license",
  50. zip_safe=False,
  51. keywords='wandb',
  52. classifiers=[
  53. 'Development Status :: 2 - Pre-Alpha',
  54. 'Intended Audience :: Developers',
  55. 'License :: OSI Approved :: MIT License',
  56. 'Natural Language :: English',
  57. "Programming Language :: Python :: 2",
  58. 'Programming Language :: Python :: 2.6',
  59. 'Programming Language :: Python :: 2.7',
  60. 'Programming Language :: Python :: 3',
  61. 'Programming Language :: Python :: 3.3',
  62. 'Programming Language :: Python :: 3.4',
  63. 'Programming Language :: Python :: 3.5',
  64. ],
  65. test_suite='tests',
  66. tests_require=test_requirements
  67. )
Tip!

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

Comments

Loading...