-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
55 lines (49 loc) · 1.76 KB
/
setup.py
File metadata and controls
55 lines (49 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# coding=utf-8
from setuptools import setup, find_packages
from codecs import open
import os
def read(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return open(path, encoding='utf-8').read()
requirements = [
'Flask>=0.8',
'flata>=5.0.0'
]
setup(
name="flatapi",
version="6.2.0",
packages=find_packages(),
# development metadata
zip_safe=True,
# metadata for upload to PyPI
author="Harry Ho",
author_email="harry.ho_long@yahoo.com",
description="is a zero-coding restful API server inspired by Json-Server and Eve"
". It is designed to be used as fake restful api for development, "
" especially for people want to stick with Python stack. Setup process "
" is less than 1 minute. ",
license="MIT",
keywords="web server json restful fake api",
url="https://github.com/harryho/flat-api",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Topic :: Restful API",
"Topic :: Restful API :: Fake API",
"Topic :: Json Server",
"Topic :: Zero Coding",
"Topic :: Utilities",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: Implementation :: PyPy",
"Operating System :: OS Independent"
],
install_requires=requirements,
long_description=read('README.rst'),
)