-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 719 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 719 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='camo-client',
version='0.1.0',
author='Ben Olive',
author_email='sionide21@gmail.com',
description="A python client for Github's Camo image proxy",
url='https://github.com/sionide21/camo-client',
py_modules=['camo'],
install_requires=['memoize', 'lxml'],
platforms='all',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: Proxy Servers'
],
)