-
Notifications
You must be signed in to change notification settings - Fork 228
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 681 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 681 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
from setuptools import setup, find_packages
setup(
name='QASnake',
version='0.1.1',
description='QA Snake v0.1.1',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
author='Snake',
url='http://www.snakehacker.me',
author_email='616976756@qq.com',
license='MIT',
packages=['QA', 'QA.resources', 'QA.QACrawler', 'QA.Tools'],
package_data={
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.aiml', '*.png', '*.xml'],
},
zip_safe=False,
)