8000 Added default versions of files · fspv/python-leetcode@b4bcb06 · GitHub
[go: up one dir, main page]

Skip to content

Commit b4bcb06

Browse files
committed
Added default versions of files
1 parent 3af20c2 commit b4bcb06

File tree

2 files changed

+52
-0
lines changed

2 files changed

+52
-0
lines changed

.travis.generated.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# ref: https://docs.travis-ci.com/user/languages/python
2+
language: python
3+
python:
4+
- "3.2"
5+
- "3.3"
6+
- "3.4"
7+
- "3.5"
8+
#- "3.5-dev" # 3.5 development branch
9+
#- "nightly" # points to the latest development branch e.g. 3.6-dev
10+
# command to install dependencies
11+
install: "pip install -r requirements.txt"
12+
# command to run tests
13+
script: nosetests

setup.generated.py

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# coding: utf-8
2+
3+
"""
4+
Leetcode API
5+
6+
Leetcode API implementation. # noqa: E501
7+
8+
OpenAPI spec version: 1.0.1-1
9+
Contact: pv.safronov@gmail.com
10+
Generated by: https://github.com/swagger-api/swagger-codegen.git
11+
"""
12+
13+
from setuptools import setup, find_packages # noqa: H301
14+
15+
NAME = "leetcode"
16+
VERSION = "1.0.0"
17+
# To install the library, run the following
18+
#
19+
# python setup.py install
20+
#
21+
# prerequisite: setuptools
22+
# http://pypi.python.org/pypi/setuptools
23+
24+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
25+
26+
setup(
27+
name=NAME,
28+
version=VERSION,
29+
description="Leetcode API",
30+
author_email="pv.safronov@gmail.com",
31+
url="",
32+
keywords=["Swagger", "Leetcode API"],
33+
install_requires=REQUIRES,
34+
packages=find_packages(),
35+
include_package_data=True,
36+
long_description="""\
37+
Leetcode API implementation. # noqa: E501
38+
"""
39+
)

0 commit comments

Comments
 (0)
0