-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpypi.py
65 lines (53 loc) · 2 KB
/
pypi.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
import os
import json
import sys
import requests
import subprocess
# Get the new version number as command line argument
new_version = sys.argv[1]
# Produce the string to store in ./setup.py
setup_string = '''import setuptools
from distutils.core import setup
setup(
name = "voiceit2",
version = "''' + new_version + '''",
description = "VoiceIt API 2.0 Python Wrapper",
author = "Hassan Ismaeel",
author_email = "[email protected]",
packages=setuptools.find_packages(),
install_requires=[
"requests",
],
url = "https://github.com/voiceittech/VoiceIt2-Python",
download_url = "https://github.com/voiceittech/VoiceIt2-Python/archive/''' + new_version + '''.tar.gz",
keywords = ["biometrics", "voice verification", "voice biometrics"],
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"],
)'''
# store string into ./setup.py
with open('./setup.py', 'w') as setup:
setup.write(setup_string)
# Draft new release using Github REST API
gh_token = os.environ['GH_TOKEN']
release_json = {'tag_name': new_version, 'target_commitish': 'master', 'name': new_version, 'body': '', 'draft': False, 'prerelease': False}
try:
response = requests.post('https://api.github.com/repos/voiceittech/VoiceIt2-Python/releases', headers={'Authorization': 'token ' + gh_token}, data=json.dumps(release_json))
print(response.text)
except requests.exceptions.HTTPError as e:
print(e.read())
exit(1)
# Update PyPi with newest package
pypiusername = os.environ['PYPIUSERNAME']
pypipassword = os.environ['PYPIPASSWORD']
pypistring = '''[distutils]
index-servers = pypi
[pypi]
username:''' + pypiusername + '''
password:''' + pypipassword
with open(str(os.path.expanduser("~")+"/") + "/.pypirc", "w") as pypirc:
pypirc.write(pypistring)
# subprocess.call(['python3', 'setup.py', 'sdist', 'upload', '-r', 'pypi'])
subprocess.call(['python3', 'setup.py', 'sdist', 'bdist_wheel'])
subprocess.call(['twine', 'upload', '-r', 'pypi', 'dist/*'])