-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
38 lines (35 loc) · 1.12 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
37
38
from setuptools import setup
NAME = 'graftr'
VERSION = '0.1.2'
DESCRIPTION = 'graftr: an interactive shell to view and edit PyTorch checkpoints.'
AUTHOR = 'LMNT, Inc.'
AUTHOR_EMAIL = '[email protected]'
URL = 'https://graftr.lmnt.com'
LICENSE = 'Apache 2.0'
KEYWORDS = [] # TODO
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
]
setup(name= NAME,
scripts=['graftr'],
version=VERSION,
description=DESCRIPTION,
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown',
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
keywords=KEYWORDS,
classifiers=CLASSIFIERS)