-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
50 lines (40 loc) · 983 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import find_packages, setup
INSTALL_REQUIRES = [
'cheroot==8.3.0',
'flask==1.1.2',
'flask-sqlalchemy==2.4.3',
'sqlalchemy==1.3.7',
'bcrypt==3.1.7',
'hashids==1.2.0',
'click==7.1.2',
'markdown==2.6.9',
'mdx-linkify==1.0',
]
DEV_REQUIRES = [
'wheel',
'twine',
]
MEMCACHE_REQUIRES = [
'pymemcache==3.2.0',
]
if __name__ == '__main__':
setup(
version='0.7',
name='MiniWiki',
author='Nick, Oxygem',
author_email='[email protected]',
license='MIT',
packages=find_packages(exclude=['tests']),
entry_points={
'console_scripts': (
'miniwiki=miniwiki.__main__:start_miniwiki',
),
},
python_requires='>=3.6',
install_requires=INSTALL_REQUIRES,
extras_require={
'dev': DEV_REQUIRES,
'memcache': MEMCACHE_REQUIRES,
},
include_package_data=True,
)