-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·69 lines (66 loc) · 1.83 KB
/
setup.py
File metadata and controls
executable file
·69 lines (66 loc) · 1.83 KB
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
65
66
67
68
69
# -*- coding:utf-8 -*-
"""
For pypi
"""
from setuptools import find_packages, setup
desc = (
'Flexible, extensible Web CMS framework built on Tornado,'
'compatible with Python 3.9 and above.'
)
setup(
name='torcms',
version='0.9.1',
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='bukun@osgeo.cn',
packages=find_packages(
# include=('torcms',),
exclude=(
'devops',
'tests',
'torcms_tester',
'flasky',
'torcms_*',
'torcms/tests',
)
),
include_package_data=True,
platforms='any',
zip_safe=True,
install_requires=[
'beautifulsoup4',
'jieba',
'markdown',
'peewee',
'Pillow',
'tornado',
'Whoosh',
'email-validator',
'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.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
],
)