-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathsetup.py
59 lines (54 loc) · 1.77 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
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import codecs
import os
from setuptools import find_packages, setup
import formapi
readme = os.path.join(os.path.dirname(__file__), "README.rst")
readme = codecs.open(readme).read()
setup(
name="django-formapi",
version=formapi.__version__,
description="Django API creation with signed requests utilizing forms for validation.",
long_description=readme,
author="Hannes Ljungberg",
author_email="hannes@5monkeys.se",
url="http://github.com/5monkeys/django-formapi",
download_url="https://github.com/5monkeys/django-formapi/tarball/%s"
% (formapi.__version__,),
keywords=[
"django",
"formapi",
"api",
"rpc",
"signed",
"request",
"form",
"validation",
],
platforms=["any"],
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Framework :: Django",
"Natural Language :: English",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Topic :: Software Development :: Libraries :: Python Modules",
],
packages=find_packages(),
include_package_data=True,
install_requires=[],
tests_require=["Django", "pytz", "importlib"],
test_suite="run_tests.main",
)