Skip to content

Commit 17afe32

Browse files
author
Eric Kolve
committed
adding tags deploy
1 parent bc5e4a9 commit 17afe32

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

.travis.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,3 +8,12 @@ script:
88
- true
99
git:
1010
depth: 3
11+
deploy:
12+
provider: pypi
13+
username: __token__
14+
password: Hbzb4cl8Q0e+cUrz8AlD7cRk/lJAmnmDlv6R4Ez79ez1ih1JX4dnQxgKpfya8jDDVeAwk3N0pGo2bFg6Khp7UCMFEWlIO2KE/TL+WKzkl423BXj9leBJybGH+19L6WpSdQh7icOrpYyektDV3agN5wZJVh94hjClkVWrrb8Tcv0kWlA2wEQBg20QIaUIi0ATVor7oGBb8O6jhPcCFJ7Gg6rznQnQwlZfCNfW6W7K7oLNowJbNeKsW6UZ2/v0CzYkGfK8AwrX8hgIFNO7usvvaanAfy3/NOd3u/wCi3W38A/1KVwn86MwW0RHX8BDNi5lSwmCObcgSwq07KbEqFZgjBQGnTSbXJLOwWHXHxzyYhTp8o1+Gp9wjTkT2gMMisKzTg0EYQ9HafMuriO2tkfFRKP8OV1KABaNcOIVC0+YJQ03lhSvjHpOUTmJX/XBzF4xiT50uT5gjCNBQD6R0CkUZp9iQ96+4KscIlCI7xHr4mt8BjXuoDIJJ6+2GOeqjMFFCQQnPl9LnjXtZoVvNmtdwn65XJFR4cTVrQOgor+U791OvFpznY+DhyJKLYql+T9O0CsBkBGH11qqM2wtdywjF0WwpWCMuHQe8wl0WWPo+OvhEcp2zt6pUaHfQeXRszEM6+0T+iyICoQegoAiRjsoygGONGLGW8saT8fNiot2Ycw=
15+
server: https://test.pypi.org/legacy/
16+
edge: true # opt in to dpl v2
17+
distributions: "sdist bdist_wheel --universal"
18+
on:
19+
tags: true

setup.py

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
from setuptools import setup, find_packages
2+
3+
4+
5+
VERSION = '1.0.1'
6+
7+
8+
setup(name='ekolve-testpython',
9+
version=VERSION,
10+
description='testdescribe',
11+
long_description="test long",
12+
classifiers=[
13+
'Development Status :: 3 - Alpha',
14+
'Programming Language :: Python :: 2.7',
15+
'Programming Language :: Python :: 3',
16+
'Programming Language :: Python :: 3.3',
17+
'Programming Language :: Python :: 3.4',
18+
'Programming Language :: Python :: 3.5',
19+
'Programming Language :: Python :: 3.6',
20+
'Programming Language :: Python :: 3.7'
21+
],
22+
keywords='test keyword',
23+
url='https://github.com/ekolve/testpython',
24+
author='eric kolve',
25+
author_email='[email protected]',
26+
license='Apache',
27+
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
28+
install_requires=[
29+
'requests'
30+
],
31+
include_package_data=False)

0 commit comments

Comments
 (0)