forked from pallets/flask
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
32 lines (30 loc) · 901 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
30
31
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
import os
def read_file(*path):
base_dir = os.path.dirname(__file__)
file_path = (base_dir, ) + tuple(path)
return file(os.path.join(*file_path)).read()
setup(
name = "flask-cn",
url = "http://flask.flyzen.com",
license="BSD",
author = "Young King",
author_email = "[email protected]",
description = "Flask documents (chinese translation)",
long_description = (
read_file("README") + "\n\n"),
version = "0.7",
packages = [],
include_package_data = True,
zip_safe=False,
install_requires=['Flask==0.7',],
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
],
)