-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (47 loc) · 1.83 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
from setuptools import setup, find_packages
version = '0.1.2'
setup(
name="arches-templating",
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# http://packaging.python.org/en/latest/tutorial.html#version
version=version,
description="Arches templating provides an extensible templating engine for various file types",
url="http://archesproject.org/",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Farallon Geographics, Inc",
author_email="[email protected]",
license="GNU AGPL3",
install_requires=[
'Django >= 3.2.18',
'python-pptx >= 0.6.21',
'python-docx >= 0.8.11, != 1.0.0',
'openpyxl >= 3.0.7',
'PyYAML >= 6.0'
],
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Intended Audience :: Information Technology",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Framework :: Django :: 1.11",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
# What does your project relate to?
keywords="django arches cultural heritage",
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(),
include_package_data=True,
zip_safe=False,
test_suite="tests.run_tests.run_all",
)