-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathsetup.py
executable file
·58 lines (48 loc) · 1.79 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
# -*- coding:utf-8 -*-
'''
For pypi
'''
from setuptools import find_packages, setup
desc = ('Flexible, extensible Web CMS framework built on Tornado,'
'compatible with Python 3.7 and above.')
setup(
name='torcms',
version='0.9.0',
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=('devops', "tester", "torcms_tester", 'flasky', 'torcms_*')),
include_package_data=True,
platforms='any',
zip_safe=True,
install_requires=['beautifulsoup4', 'jieba', 'markdown',
'peewee', 'Pillow', 'wheel',
'tornado', 'Whoosh', 'WTForms',
'tornado-wtforms', 'email-validator',
'psycopg2-binary', 'html2text',
'redis', 'pyyaml', 'htmlmin'],
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.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)