forked from Peoplecantfly/icapserver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (23 loc) · 716 Bytes
/
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
#-*-: coding: utf-8
from distutils.core import setup
setup(
name='icapserver',
version='1.3',
description='ICAP Server framework',
author='Nikolay Ivanov',
author_email='[email protected]',
url='https://github.com/Peoplecantfly/icapserver',
download_url='https://github.com/Peoplecantfly/icapserver/releases/tag/v1.3',
license='MIT License',
platforms='OS Independent',
py_modules=['icapserver'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
]
)