-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
64 lines (54 loc) · 1.94 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
62
63
64
import os
import re
import ast
from setuptools import setup, find_packages
_version_re = re.compile(r'__version__\s+=\s+(.*)')
_root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_root, 'cachext/__init__.py')) as f:
version = str(ast.literal_eval(_version_re.search(
f.read()).group(1)))
with open(os.path.join(_root, 'requirements.txt')) as f:
requirements = f.readlines()
with open(os.path.join(_root, 'README.md')) as f:
readme = f.read()
def find_package_data(package):
"""
Return all files under the root package, that are not in a
package themselves.
"""
walk = [(dirpath.replace(package + os.sep, '', 1), filenames)
for dirpath, dirnames, filenames in os.walk(package)]
filepaths = []
for base, filenames in walk:
filepaths.extend([os.path.join(base, filename)
for filename in filenames])
return filepaths
setup(
name='cachext',
version=version,
description='cache extension for sea/flask',
long_description=readme,
url='https://github.com/shanbay/cachext',
author='Michael Ding',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Internet',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=['cache', 'flask', 'sea'],
packages=find_packages(exclude=['tests']),
package_data={'cachext': find_package_data('cachext')},
python_requires='>=3',
install_requires=requirements
)