-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (29 loc) · 892 Bytes
/
setup.py
File metadata and controls
executable file
·31 lines (29 loc) · 892 Bytes
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
#! /usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import controller.app as meta
site = meta.Application([]).config['site']
setup(
name='cbreader',
version=meta.__version__,
description=site['name'],
keywords=site['keywords'],
platforms='any',
packages=find_packages() + ['controller'],
package_data={
'controller': [
'../main.py',
'../*.yml', '../requirements.txt', '../run_tests.py', '../tox.ini'
]
},
classifiers=[
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic'
],
zip_safe=False
)