-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 1.32 KB
/
setup.py
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
import setuptools
setuptools.setup(
name='wandb_summarizer',
version='0.1',
description='A tiny CSV export micro-library for Weights and Biases.',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='',
author='A. Samuel Pottinger',
license='MIT',
packages=['wandb_summarizer'],
install_requires=[
'wandb',
],
entry_points = {
'console_scripts': ['wandb-summarizer-to-csv=wandb_summarizer.export:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry',
'Intended Audience :: Information Technology',
'Intended Audience :: Legal Industry',
'Intended Audience :: Science/Research',
'Intended Audience :: Healthcare Industry',
'Intended Audience :: Telecommunications Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing'
],
download_url='https://github.com/sampottinger/wandb_summarizer/archive/master.zip'
)