forked from cmheisel/kardboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 989 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
from setuptools import setup, find_packages
version = __import__('kardboard.version', fromlist=['version', ]).version
setup(
name="kardboard",
version=version,
author="Chris Heisel",
author_email="chris@heisel.org",
description=("Dashboard for tracking real-life cards on a real-life Kanban board(s)"),
long_description=open("README.rst").read(),
url="https://github.com/cmheisel/kardboard",
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",
]
)