-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 768 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="flask-core",
version="2.9.0",
author="Carey Li, Sean Yeoh, Zain Afzal",
author_email="cs6443@cse.unsw.edu.au",
description="A modular Flask core for CTF war-games, originally created for CS6443",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/secedu/flask-core",
packages=find_packages(),
include_package_data=True,
install_requires=["flask", "psycopg2", "psycopg2-binary", "SQLAlchemy", "cryptography"],
package_data={"flask-core": ["templates/*/*"]},
classifiers=["Programming Language :: Python :: 3"],
)