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.7 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
  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. 'gql>=0.1.0',
  9. 'requests>=2.0.0',
  10. 'inquirer>=2.1.11',
  11. 'six>=1.10.0',
  12. 'psutil>=5.2.2',
  13. 'watchdog>=0.8.3',
  14. 'GitPython>=2.1.3',
  15. 'shortuuid>=0.5.0'
  16. ]
  17. test_requirements = [
  18. 'mock>=2.0.0',
  19. 'tox-pyenv>=1.0.3'
  20. ]
  21. setup(
  22. name='wandb',
  23. version='0.4.19',
  24. description="A CLI and library for interacting with the Weights and Biases API.",
  25. long_description=readme,
  26. author="Chris Van Pelt",
  27. author_email='vanpelt@gmail.co',
  28. url='https://github.com/wandb/client',
  29. packages=[
  30. 'wandb',
  31. ],
  32. package_dir={'wandb':
  33. 'wandb'},
  34. entry_points={
  35. 'console_scripts': [
  36. 'wandb=wandb.cli:cli',
  37. 'wb=wandb.cli:cli',
  38. 'wanbd=wandb.cli:cli'
  39. ]
  40. },
  41. include_package_data=True,
  42. install_requires=requirements,
  43. license="MIT license",
  44. zip_safe=False,
  45. keywords='wandb',
  46. classifiers=[
  47. 'Development Status :: 2 - Pre-Alpha',
  48. 'Intended Audience :: Developers',
  49. 'License :: OSI Approved :: MIT License',
  50. 'Natural Language :: English',
  51. "Programming Language :: Python :: 2",
  52. 'Programming Language :: Python :: 2.6',
  53. 'Programming Language :: Python :: 2.7',
  54. 'Programming Language :: Python :: 3',
  55. 'Programming Language :: Python :: 3.3',
  56. 'Programming Language :: Python :: 3.4',
  57. 'Programming Language :: Python :: 3.5',
  58. ],
  59. test_suite='tests',
  60. tests_require=test_requirements
  61. )
Tip!

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

Comments

Loading...