-
Notifications
You must be signed in to change notification settings - Fork 215
/
Copy pathsetup.py
66 lines (60 loc) · 1.89 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
65
66
# coding:utf-8
from setuptools import setup, find_packages
setup(
name='typeidea',
version='${version}',
description='Blog System base on Django',
author='the5fire',
author_email='[email protected]',
url='https://www.the5fire.com',
license='MIT',
packages=find_packages('typeidea'),
package_dir={'': 'typeidea'},
# package_data={'': [ # 打包数据文件,方法一
# 'themes/*/*/*/*', # 需要按目录层级匹配
# ]},
include_package_data=True, # 方法二 配合 MANIFEST.in文件
install_requires=[
'django~=2.0',
'gunicorn==19.8.1',
'supervisor==4.0.0dev0',
'xadmin==2.0.1',
'mysqlclient==1.3.12',
'django-ckeditor==5.4.0',
'django-rest-framework==0.1.0',
'django-redis==4.8.0',
'django-autocomplete-light==3.2.10',
'mistune==0.8.3',
'Pillow==4.3.0',
'coreapi==2.3.3',
'django-redis==4.8.0',
'hiredis==0.2.0',
# debug
'django-debug-toolbar==1.9.1',
'django-silk==2.0.0',
],
scripts=[
'typeidea/manage.py',
'typeidea/typeidea/wsgi.py',
],
entry_points={
'console_scripts': [
'typeidea_manage = manage:main',
]
},
classifiers=[ # Optional
# 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 :: Blog :: Django Blog',
# Pick your license as you wish
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3.6',
],
)