-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
47 lines (37 loc) · 1.25 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name='django-antispam',
version='1.0.3',
url='https://github.com/mixkorshun/django-antispam',
description='Anti-spam protection tools for django applications.',
keywords=['anti-spam', 'antispam', 'spam'],
long_description=open('README.rst', 'r').read(),
author='Vladislav Bakin',
author_email='[email protected]',
maintainer='Vladislav Bakin',
maintainer_email='[email protected]',
license='MIT',
install_requires=[
'django',
'python-akismet',
],
tests_require=[
'mock~=3.0',
],
packages=find_packages(exclude=['tests.*', 'tests']),
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Django',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)