forked from sionide21/camo-client
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
27 lines (24 loc) · 811 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
26
27
#!/usr/bin/env python
from setuptools import setup
setup(
name='camo-client',
version='0.1.0',
author='Ben Olive',
author_email='[email protected]',
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',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python',
],
)