forked from Sense-GVT/DeCLIP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 655 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import setuptools
from prototype import __version__
setuptools.setup(
name='Spring-Prototype',
version=__version__,
author='Yuan Kun',
author_email='yuankun@sensetime.com',
description='Distributed General Image Classification Framework',
url='http://gitlab.bj.sensetime.com/spring-ce/element/prototype.git',
packages=setuptools.find_packages(),
license='Internal',
include_package_data=True,
zip_safe=False,
classifiers=[
'License :: OSI Approved :: Internal',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
]
)