forked from netom/pyicap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·26 lines (24 loc) · 823 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·26 lines (24 loc) · 823 Bytes
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
#!/usr/bin/env python
# -*- coding: utf8 -*-
from distutils.core import setup, Extension
setup(
name='pyicap',
version='1.0a8',
description='A framework for writing ICAP servers',
author='FÁBIÁN Tamás László',
author_email='giganetom@gmail.com',
url='https://github.com/netom/pyicap/',
download_url='https://github.com/netom/pyicap/tarball/1.0a8#egg=pyicap-1.0a8',
license='BSD License',
platforms='OS Independent',
py_modules=['pyicap'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
]
)