-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 889 Bytes
/
setup.py
File metadata and controls
27 lines (26 loc) · 889 Bytes
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
from setuptools import setup, find_packages
setup(
name="breezeminder",
version='0.1',
author="Shaun Duncan",
author_email="shaun.duncan@gmail.com",
description=("Breeze Card Automated Reminders"),
long_description=open("README.rst").read(),
url="https://github.com/shaunduncan/breezeminder",
zip_safe=False,
include_package_data=True,
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.rst', '.html'],
},
packages=find_packages(),
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Flask",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Site Management",
]
)