forked from tonyseek/flask-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
37 lines (33 loc) · 1.32 KB
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
from setuptools import setup, find_packages
from os.path import dirname, realpath, join
def read_long_description():
current_dir = dirname(realpath(__file__))
with open(join(current_dir, "README.rst")) as long_description_file:
return long_description_file.read()
setup(
name="Flask-Navigation",
packages=find_packages(exclude=["tests", "docs"]),
version='0.2.0',
description="The navigation of Flask application.",
long_description=read_long_description(),
author="Jiangge Zhang",
author_email="tonyseek@gmail.com",
url="https://github.com/tonyseek/flask-navigation",
license="MIT",
keywords=["navigation", "flask", "navbar", "nav"],
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: Implementation :: PyPy",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Environment :: Web Environment",
"Framework :: Flask",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["Flask", "blinker"],
)