Skip to content

Commit 827a358

Browse files
author
Mart Somermaa
committed
#11: Release v1.0.2
1 parent 4142afd commit 827a358

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

docs/publishing.md

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Publishing
2+
3+
See https://packaging.python.org/tutorials/packaging-projects/
4+
5+
## Steps
6+
7+
```sh
8+
pip install --user --upgrade setuptools wheel
9+
pip install --user --upgrade twine
10+
11+
python setup.py sdist bdist_wheel
12+
twine upload -r pypi dist/*
13+
```
14+
15+
## ~/.pypirc
16+
17+
```ini
18+
[distutils]
19+
index-servers = pypi pypitest
20+
21+
[pypi]
22+
repository: https://upload.pypi.org/legacy/
23+
username: mrts
24+
password: ...
25+
26+
[pypitest]
27+
repository: https://test.pypi.org/legacy/
28+
username: mrts
29+
password: ...
30+
```

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import os
44
from setuptools import find_packages, setup
55

6-
VERSION = '1.0.1'
6+
VERSION = '1.0.2'
77

88
# allow setup.py to be run from any path
99
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
@@ -24,7 +24,7 @@
2424
url='https://github.com/mrts/django-admin-list-filter-dropdown',
2525
download_url='https://github.com/mrts/django-admin-list-filter-dropdown/archive/%s.zip' % VERSION,
2626
author='Mart Sõmermaa',
27-
author_email="mrts.pydev at gmail dot com",
27+
author_email="mrts.pydev@gmail.com",
2828
keywords=['django', 'admin', 'filter', 'dropdown'],
2929
classifiers=[
3030
'Environment :: Web Environment',

0 commit comments

Comments
 (0)