-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.28 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
"""
Auto Red Test
~~~~~~~~~~~~~~~~~~~
Auto Create PyTest Frame and Fake Test Parameters For Red
:copyright: (c) 2019 by Junjie Qiu
:license: MIT, see LICENSE for more details
"""
from os import path
from codecs import open
from setuptools import setup
basedir = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(basedir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='auto-red-test', # 包名称
version='0.2.1', # 版本
url='https://github.com/qjjayy/red_test',
license='MIT',
author='Junjie Qiu',
author_email='[email protected]',
description='Auto Create PyTest Frame and Fake Test Parameters For Red',
long_description=long_description,
long_description_content_type='text/markdown', # 长描述内容类型
platforms='any',
packages=['auto_red_test'], # 包含的包列表
zip_safe=False,
include_package_data=False,
install_requires=['pytest', 'pyaml', 'Faker', 'bson', 'dictdiffer'],
keywords='auto red test',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
]
)