forked from airlog/absklep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (45 loc) · 1.54 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
import os
import re
here = os.path.abspath(os.path.dirname(__file__))
# Read the version number from a source file.
# Code taken from pip's setup.py
def find_version(*file_paths):
with open(os.path.join(here, *file_paths), 'r') as f:
version_file = f.read()
# The version line must have the form
# __version__ = 'ver'
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name="absklep",
version = find_version('absklep', '__init__.py'),
description = "a simple yet powerful shop webservice",
# TODO: license
classifiers = [
'Development Status :: 1 - Planning',
'Framework :: Flask',
'Environment :: Web Environment',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Intended Audience :: End Users/Desktop',
# TODO: license
'Natural Language :: Polish',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
keywords = 'shop wsgi',
install_requires = [
"Flask>=0.10",
"Flask-Login>=0.2.10",
"Flask-WTF>=0.9.3",
"Flask-SQLAlchemy>=1.0",
"SQLAlchemy>=0.9",
"BeautifulSoup4",
"markdown==2.4",
],
packages = find_packages(exclude = ["tests*"]),
)