Skip to content

Commit 51b2dc3

Browse files
committed
updated version
1 parent ccd788e commit 51b2dc3

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

randomText/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = '1.0.0'
1+
__version__ = '1.3.0'
22
__author__ = 'Josh Nussbaum'
33
__email__ = '[email protected]'

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
from setuptools import setup
22

3-
from randomText import __author__, __email__, __version__
4-
53
with open("README.md", "r") as fh:
64
long_description = fh.read()
75

86
setup(name='random-text',
9-
version=__version__,
7+
version='1.3.0',
108
description='A Python client library Random Data Api',
119
long_description=long_description,
1210
long_description_content_type='text/markdown; charset=UTF-8',
13-
author=__author__,
14-
author_email=__email__,
11+
author='josh nussbaum',
12+
author_email='[email protected]',
1513
packages=['randomText', 'randomText.src'],
1614
url='https://github.com/uricod/random-text',
1715
include_package_data=True,
1816
zip_safe=False,
1917
license='BSD',
2018
python_requires='>=3.6',
2119
install_requires=[
22-
'requests',
20+
'requests==2.27.1',
2321
'pandas==1.4.2'
2422
],
2523
classifiers=[

0 commit comments

Comments
 (0)