Skip to content

Commit

Permalink
Refactoring metadata files.
Browse files Browse the repository at this point in the history
igorborgest committed Jul 12, 2020
1 parent 5facae2 commit 9547f9c
Showing 9 changed files with 44 additions and 30 deletions.
2 changes: 0 additions & 2 deletions .flake8

This file was deleted.

6 changes: 0 additions & 6 deletions .isort.cfg

This file was deleted.

File renamed without changes.
25 changes: 14 additions & 11 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
include README.md LICENSE requirements.txt NOTICE THIRD_PARTY
include README.md
include LICENSE.txt
include NOTICE.txt
include THIRD_PARTY.txt
include requirements.txt
include awswrangler/py.typed
exclude .*
exclude *.egg-info
exclude data_samples*
exclude dist*
exclude docs*
exclude dev*
exclude htmlcov*
exclude testing*
exclude building*
exclude tutorials*

global-exclude *.so
global-exclude *.pyc
global-exclude *~
global-exclude \#*
global-exclude .git*
global-exclude .coverage*
global-exclude .DS_Store
global-exclude __pycache__
File renamed without changes.
File renamed without changes.
7 changes: 0 additions & 7 deletions pytest.ini

This file was deleted.

23 changes: 22 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,23 @@
[metadata]
license_file = LICENSE
license_files =
LICENSE.txt
NOTICE.txt
THIRD_PARTY.txt

[flake8]
max-line-length = 120

[tool:pytest]
addopts =
--verbose
--capture=fd
filterwarnings =
ignore::DeprecationWarning
ignore::UserWarning

[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=120
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
from io import open
from setuptools import setup, find_packages
from setuptools import setup

here = os.path.abspath(os.path.dirname(__file__))
about = {}
@@ -20,8 +20,13 @@
long_description=long_description,
long_description_content_type="text/markdown",
license=about["__license__"],
packages=find_packages(include=["awswrangler", "awswrangler.*"], exclude=["tests"]),
packages=["awswrangler"],
include_package_data=True,
python_requires=">=3.6, <3.9",
install_requires=[open("requirements.txt").read().strip().split("\n")]
install_requires=[open("requirements.txt").read().strip().split("\n")],
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)

0 comments on commit 9547f9c

Please sign in to comment.