-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathsetup.py
executable file
·53 lines (47 loc) · 1.51 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name="Plata",
version=__import__("plata").__version__,
description="Plata - the lean and mean Django-based Shop",
long_description=read("README.rst"),
author="Matthias Kestenholz et al.",
author_email="[email protected]",
url="https://github.com/fiee/plata/",
license="BSD License",
platforms=["OS Independent"],
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=[
"Django > 1.8",
"simplejson>=3.8",
"openpyxl>=2.2",
"reportlab>=3.2",
"pdfdocument>=3.1",
"xlsxdocument",
"django-countries>=3.3",
"pytz",
],
extras_require={
"billogram": ["billogram_api"],
"payson": ["payson_api"],
"stripe": ["stripe"],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Application Frameworks",
],
zip_safe=False,
)