1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/mirrors-ebaipy

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Клонировать/Скачать
setup.py 2.2 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Bruce He Отправлено 15.07.2019 10:09 d06afd6
#!/usr/bin/env python
from __future__ import print_function
import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
class PyTest(TestCommand):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
TestCommand.initialize_options(self)
self.pytest_args = []
def finalize_options(self):
TestCommand.finalize_options(self)
self.test_args = []
self.test_suite = True
def run_tests(self):
import pytest
errno = pytest.main(self.pytest_args)
sys.exit(errno)
cmdclass = {}
cmdclass['test'] = PyTest
with open('README.md', 'rb') as f:
long_description = f.read().decode('utf-8')
with open('requirements.txt') as f:
requirements = [l for l in f.read().splitlines() if l]
setup(
name='ebaipy',
version='0.5.1',
author='Bruce He',
author_email='bruce@shbewell.com',
url='https://github.com/brucehe3/ebaipy',
packages=find_packages(exclude=('tests', 'tests.*')),
keywords='Ebai, Eleme, SDK',
description='Ebai SDK for Python',
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requirements,
include_package_data=True,
tests_require=[
'pytest',
],
cmdclass=cmdclass,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
]
)

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/mirrors-ebaipy.git
git@api.gitlife.ru:oschina-mirror/mirrors-ebaipy.git
oschina-mirror
mirrors-ebaipy
mirrors-ebaipy
master