-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
55 lines (48 loc) · 1.69 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
""" A setuptools based setup module. """
__author__ = "Sam Pepler"
__date__ = "2017-07-28"
__copyright__ = "Copyright 2019 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level directory"
from setuptools import setup, find_packages
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name = "arrivals_uploader",
version = "1.1.1",
description = "Django application which provides upload functionality.",
author = "Sam Pepler",
author_email = "[email protected]",
maintainer = "William Tucker",
maintainer_email = "[email protected]",
url = "https://github.com/cedadev/arrivals-uploader",
long_description = long_description,
long_description_content_type = "text/markdown",
license = "BSD - See LICENSE file for details",
include_package_data=True,
packages = find_packages(),
install_requires = [
"django",
"django-extensions",
"django-multiselectfield",
"django-downloadview",
"python-dateutil",
"pytz",
"Unidecode",
"PyYAML",
"pexpect",
],
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
zip_safe = False,
)