forked from kuszaj/claptcha
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
30 lines (28 loc) · 1.01 KB
/
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
28
29
30
from setuptools import setup
from claptcha import __version__ as version
from claptcha import __doc__ as long_description
setup(name='claptcha',
version=version,
author="Piotr Kuszaj",
author_email="[email protected]",
url="https://github.com/kuszaj/claptcha/",
description="A simple CAPTCHA image generator",
long_description=long_description,
license='MIT',
packages=['claptcha'],
install_requires=[
'Pillow'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)