-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 828 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
from setuptools import find_packages, setup
setup(
name="imperial-painter",
version="1.0.0",
include_package_data=True,
packages=find_packages(),
install_requires=[
'django>=1.11.20',
'django-extensions>=2.1.6',
'django-jsonfield>=1.1.0',
'dj_database_url>=0.3.0',
'lxml>=4.3.3',
'openpyxl>=2.6.2',
'psycopg2>=2.8.1',
],
author="Adam Thomas",
author_email="[email protected]",
description="A tool for generating prototype cards from Excel files and Django templates",
url="https://github.com/adam-thomas/imperial-painter",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)