Skip to content

Commit 3e98ed5

Browse files
committed
Updates to setup.py in preparation for release 0.1.2.
Copybara generated commit for Python Fire. PiperOrigin-RevId: 162942210 Change-Id: I2b42bfc7ed249e2265fb3227230241b0bc19ab32 Reviewed-on: https://team-review.git.corp.google.com/85921 Reviewed-by: David Bieber <[email protected]>
1 parent b5053ba commit 3e98ed5

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

setup.py

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,18 +39,21 @@
3939
'python-Levenshtein',
4040
]
4141

42+
VERSION = '0.1.2'
43+
URL = 'https://github.com/google/python-fire'
44+
DOWNLOAD_URL = ('https://github.com/google/python-fire/archive/'
45+
'v{version}.tar.gz').format(version=VERSION)
46+
4247
setup(
4348
name='fire',
44-
version='0.1.1',
45-
49+
version=VERSION,
4650
description=SHORT_DESCRIPTION,
4751
long_description=LONG_DESCRIPTION,
48-
49-
url='https://github.com/google/python-fire',
52+
url=URL,
53+
download_url=DOWNLOAD_URL,
5054

5155
author='David Bieber',
5256
author_email='[email protected]',
53-
5457
license='Apache Software License',
5558

5659
classifiers=[
@@ -81,4 +84,5 @@
8184

8285
install_requires=DEPENDENCIES,
8386
tests_require=TEST_DEPENDENCIES,
87+
data_files=[('', ['LICENSE'])],
8488
)

0 commit comments

Comments
 (0)