Skip to content

Commit a6b4bd7

Browse files
committed
Package maintenance update.
- Updated setup.py - Updated Archive. - Updated README.md - Removed README.txt
1 parent d5aa7bc commit a6b4bd7

File tree

5 files changed

+14
-44
lines changed

5 files changed

+14
-44
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ***randstr-random***
22

3-
A Python package for generating strings with random characters built on top of the random module.
3+
Python package for generating strings with random characters.
44

55
Make sure to have the latest version of Python 3 installed although this should work with previous versions.
66

README.txt

Lines changed: 0 additions & 38 deletions
This file was deleted.

dist/randstr-random-1.1.1.tar.gz

-2.59 KB
Binary file not shown.

dist/randstr-random-1.1.2.tar.gz

2.93 KB
Binary file not shown.

setup.py

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
#!/usr/bin/env python3
2-
# Setup python package - python setup.py sdist
32

43
from setuptools import setup
4+
from pathlib import Path
55

66
setup(
77
name='randstr-random',
8-
version='1.1.1',
8+
version='1.1.2',
99
py_modules=['randstr'],
1010
license='MIT',
11-
description='A Python package for generating strings with random characters built on top of the random module.',
12-
long_description=open('README.txt').read(),
11+
description='Python package for generating strings with random characters.',
12+
long_description=(Path(__file__).parent / "README.md").read_text(),
1313
long_description_content_type='text/markdown',
1414
url='https://github.com/CodeConfidant/randstr-random',
1515
author='Drew Hainer',
1616
author_email='codeconfidant@gmail.com',
1717
platforms=['Windows', 'Linux']
18-
)
18+
)
19+
20+
# - Update README.md
21+
# - Update Version Number
22+
# - Tar Wrap the Package: python setup.py sdist
23+
# - Check Package: twine check dist/*
24+
# - Upload to PYPI: twine upload dist/*
25+
# - Commit Changes
26+
# - Change Release Version in Github Repo

0 commit comments

Comments
 (0)