-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·54 lines (44 loc) · 1.59 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
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
'''
For pypi
'''
from setuptools import setup, find_packages
desc = ('Flexible, extensible Web CMS framework built on Tornado,'
'compatible with Python 3.4 and above.')
setup(
name='torcms',
version='0.6.24',
keywords=('torcms', 'tornado', 'cms',),
description=desc,
long_description=''.join(open('README.rst').readlines()),
license='MIT License',
url='https://github.com/bukun/TorCMS',
author='bukun',
author_email='[email protected]',
packages=find_packages(
# include=('torcms',),
exclude=("tester", "torcms_tester", 'flasky',)),
include_package_data=True,
platforms='any',
zip_safe=True,
install_requires=['beautifulsoup4', 'jieba', 'markdown', 'peewee', 'Pillow',
'tornado', 'Whoosh', 'WTForms', 'wtforms-tornado',
'psycopg2-binary', 'html2text', 'redis', 'pyyaml'],
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
)