mirror of https://github.com/flaggo/pydu.git
refactor structure and add basic config
This commit is contained in:
parent
cb24476c1c
commit
4644c93e96
|
@ -0,0 +1,15 @@
|
|||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
- "3.5"
|
||||
- "3.6"
|
||||
install:
|
||||
- pip install tox-travis
|
||||
script:
|
||||
- tox
|
||||
notifications:
|
||||
email:
|
||||
recipients:
|
||||
- wangbinxin001@126.com
|
||||
on_success: never
|
||||
on_failure: always
|
|
@ -1,2 +1,2 @@
|
|||
# pylib
|
||||
Useful utils, data structure for Python
|
||||
Useful utils, data structure for Python 2 and 3.
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
pytest
|
||||
coveralls
|
|
@ -0,0 +1,11 @@
|
|||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name="pylib",
|
||||
version="0.0.1",
|
||||
description="pylib",
|
||||
author="Prodesire",
|
||||
url="https://github.com/Prodesire/pylib",
|
||||
setup_requires=['pytest-runner'],
|
||||
packages=find_packages(),
|
||||
)
|
Loading…
Reference in New Issue