-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
36 lines (34 loc) · 965 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import setuptools
setup(
name="tamato",
version="0.0.1",
description="UK Tariff Management Tool",
maintainer="Department for International Trade",
maintainer_email="[email protected]", # /PS-IGNORE
url="https://github.com/uktrade/tamato",
packages=setuptools.find_packages(),
install_requires=[
"dj-database-url",
"django",
"django-extra-fields",
"django-filter",
"django-fsm",
"django-health-check",
"django-polymorphic",
"django-webpack-loader",
"django_extensions",
"djangorestframework",
"gunicorn",
"jinja2",
"psycopg[binary]",
"python-dotenv",
"sentry-sdk",
"werkzeug",
"whitenoise",
],
dependency_links=[
"https://github.com/alphagov/govuk-frontend-jinja/tarball/master#egg=govuk-frontend-jinja",
],
)