Skip to content
This repository was archived by the owner on Nov 4, 2025. It is now read-only.

Commit d6b40e8

Browse files
author
doncov.eugene
committed
emp_mos_api 0.3
1 parent fdb13ca commit d6b40e8

3 files changed

Lines changed: 6 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ python https://bootstrap.pypa.io/get-pip.py
6969
## Создание пакета
7070
```
7171
python setup.py sdist --formats=zip bdist_wheel # или --formats=gztar
72+
twine upload dist/*
7273
```

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
requests==2.19.1
2-
distro==1.3.0
1+
distro==1.3.0
2+
requests==2.19.1

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212

1313
VERSION_MAJOR = 0
14-
VERSION_MINOR = 2
14+
VERSION_MINOR = 3
1515

1616
ver = '%d.%d' % (VERSION_MAJOR, VERSION_MINOR)
1717

@@ -48,7 +48,7 @@
4848
license='MIT',
4949
platforms=['linux2', 'win32'],
5050
install_requires=[
51-
'requests==2.19.1',
52-
'distro==1.3.0'
51+
'distro==1.3.0',
52+
'requests==2.19.1'
5353
],
5454
)

0 commit comments

Comments
 (0)