-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version: 0.3.1 → 0.3.2, use setup.cfg
- Loading branch information
1 parent
e7fa977
commit 216118c
Showing
8 changed files
with
63 additions
and
62 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 was deleted.
Oops, something went wrong.
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
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,2 +1,49 @@ | ||
[metadata] | ||
version = 0.3.1 | ||
name = arche | ||
version = 0.3.2 | ||
description = Analyze Scrapy Cloud data | ||
long_description = file: README.md, CHANGES.md | ||
long_description_content_type = text/markdown | ||
keywords = scrapinghub, scraping, data, data-visualization, data-analysis, pandas | ||
maintainer = Scrapinghub, manycoding | ||
maintainer_email = [email protected] | ||
url = http://github.com/scrapinghub/arche | ||
license = MIT | ||
classifiers = | ||
Development Status :: 5 - Production/Stable | ||
Intended Audience :: Developers | ||
Programming Language :: Python :: 3.7 | ||
|
||
[options] | ||
package_dir = | ||
=src | ||
packages = find: | ||
setup_requires = setuptools_scm | ||
install_requires = | ||
pandas | ||
scrapinghub[msgpack] | ||
plotly>=3.8.0 | ||
genson | ||
boto3 | ||
jsonschema[format]>=3.0.0 | ||
fastjsonschema | ||
perfect-jsonschema | ||
colorama | ||
tqdm | ||
ipywidgets | ||
zip_safe = True | ||
|
||
[options.extras_require] | ||
tests = | ||
pytest | ||
pytest-mock | ||
pytest-cov | ||
pytest-pythonpath | ||
pep8tests = | ||
flake8 | ||
flake8-import-order | ||
flake8-bugbear | ||
black | ||
|
||
[options.packages.find] | ||
where = src |
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,45 +1,4 @@ | ||
from setuptools import find_packages, setup | ||
from setuptools import setup | ||
|
||
|
||
install_requires = ( | ||
"pandas", | ||
"scrapinghub[msgpack]", | ||
"plotly>=3.8.0", | ||
"genson", | ||
"boto3", | ||
"jsonschema[format]>=3.0.0", | ||
"fastjsonschema", | ||
"perfect-jsonschema", | ||
"colorama", | ||
"tqdm", | ||
"ipywidgets", | ||
) | ||
dependency_links = ["https://github.com/ambv/black.git#egg=black"] | ||
|
||
|
||
tests_require = ["pytest", "pytest-mock", "pytest-cov", "pytest-pythonpath"] | ||
|
||
|
||
setup( | ||
name="arche", | ||
description="Analyze Scrapy Cloud data", | ||
author="Scrapinghub", | ||
license="MIT", | ||
url="http://github.com/scrapinghub/arche", | ||
platforms=["Any"], | ||
packages=find_packages(where="src"), | ||
package_dir={"": "src"}, | ||
zip_safe=True, | ||
install_requires=install_requires, | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3.7", | ||
], | ||
python_requires=">=3.7", | ||
extras_require={ | ||
"tests": tests_require, | ||
"pep8tests": ["flake8", "flake8-import-order", "flake8-bugbear", "black"], | ||
}, | ||
tests_require=tests_require, | ||
) | ||
setup() |
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 |
---|---|---|
|
@@ -46,4 +46,4 @@ xfail_strict = true | |
branch = true | ||
|
||
[coverage:report] | ||
fail_under = 61 | ||
fail_under = 62 |