-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 1.01 KB
/
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
37
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
author_email="[email protected]",
author="LAB132",
description="Flask extension for Tabler",
include_package_data=True,
license="MIT",
long_description=read("README.md"),
name="Flask-Tabler",
packages=["flask_tabler"],
platforms="any",
url="http://github.com/lab132/flask-tabler",
version="0.1.0",
zip_safe=False,
install_requires=[
"Flask>=3.0",
"visitor",
],
classifiers=[
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)