-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 1.2.1 to fix invalid script name.
- Loading branch information
Showing
2 changed files
with
41 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,50 @@ | ||
#!/usr/bin/env python3 | ||
""" Install script for beanprice. """ | ||
"""Install script for beanprice.""" | ||
|
||
__copyright__ = "Copyright (C) 2008-2020 Martin Blais" | ||
__license__ = "GNU GPLv2" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
|
||
setup(name="beanprice", | ||
version='1.2.0', | ||
description="Price quotes fetcher for Beancount", | ||
long_description= | ||
""" | ||
setup( | ||
name="beanprice", | ||
version="1.2.1", | ||
description="Price quotes fetcher for Beancount", | ||
long_description=""" | ||
A script to fetch market data prices from various sources on the internet | ||
and render them for plain text accounting price syntax (and Beancount). | ||
""", | ||
|
||
license="GNU GPLv2 only", | ||
author="Martin Blais", | ||
author_email="[email protected]", | ||
url="http://github.com/beancount/beanprice", | ||
download_url="https://github.com/beancount/beanprice", | ||
packages=find_packages(), | ||
|
||
install_requires=[ | ||
# Beancount library itself. | ||
'beancount>=2.3.4', | ||
|
||
# Testing support now uses the pytest module. | ||
'pytest', | ||
|
||
# This is required to parse dates from command-line options in a | ||
# loose, accepting format. Note that we use dateutil for timezone | ||
# database definitions as well, although it is inferior to pytz, but | ||
# because it can use the OS timezone database in the Windows | ||
# registry. See this article for context: | ||
# https://www.assert.cc/2014/05/25/which-python-time-zone-library.html | ||
# However, for creating offset timezones, we use the datetime.timezone | ||
# helper class because it is built-in. | ||
# Where this matters is for price source fetchers. | ||
# (Note: If pytz supported the Windows registry timezone information, | ||
# I would switch to that.) | ||
'python-dateutil', | ||
|
||
# This library is needed to make requests for price sources. | ||
'requests', | ||
], | ||
|
||
entry_points={ | ||
'console_scripts': [ | ||
'bean-price = beanprice.price:main', | ||
] | ||
}, | ||
|
||
python_requires='>=3.5') | ||
license="GNU GPLv2 only", | ||
author="Martin Blais", | ||
author_email="[email protected]", | ||
url="http://github.com/beancount/beanprice", | ||
download_url="https://github.com/beancount/beanprice", | ||
packages=find_packages(), | ||
install_requires=[ | ||
# Beancount library itself. | ||
"beancount>=2.3.4", | ||
# Testing support now uses the pytest module. | ||
"pytest", | ||
# This is required to parse dates from command-line options in a | ||
# loose, accepting format. Note that we use dateutil for timezone | ||
# database definitions as well, although it is inferior to pytz, but | ||
# because it can use the OS timezone database in the Windows | ||
# registry. See this article for context: | ||
# https://www.assert.cc/2014/05/25/which-python-time-zone-library.html | ||
# However, for creating offset timezones, we use the datetime.timezone | ||
# helper class because it is built-in. | ||
# Where this matters is for price source fetchers. | ||
# (Note: If pytz supported the Windows registry timezone information, | ||
# I would switch to that.) | ||
"python-dateutil", | ||
# This library is needed to make requests for price sources. | ||
"requests", | ||
], | ||
entry_points={ | ||
"console_scripts": [ | ||
"bean-price = beanprice.price:main", | ||
] | ||
}, | ||
python_requires=">=3.5", | ||
) |