Skip to content

Commit 9547f9c

Browse files
committed
Refactoring metadata files.
1 parent 5facae2 commit 9547f9c

9 files changed

+44
-30
lines changed

.flake8

-2
This file was deleted.

.isort.cfg

-6
This file was deleted.

LICENSE renamed to LICENSE.txt

File renamed without changes.

MANIFEST.in

+14-11
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
include README.md LICENSE requirements.txt NOTICE THIRD_PARTY
1+
include README.md
2+
include LICENSE.txt
3+
include NOTICE.txt
4+
include THIRD_PARTY.txt
5+
include requirements.txt
26
include awswrangler/py.typed
3-
exclude .*
4-
exclude *.egg-info
5-
exclude data_samples*
6-
exclude dist*
7-
exclude docs*
8-
exclude dev*
9-
exclude htmlcov*
10-
exclude testing*
11-
exclude building*
12-
exclude tutorials*
7+
8+
global-exclude *.so
9+
global-exclude *.pyc
10+
global-exclude *~
11+
global-exclude \#*
12+
global-exclude .git*
13+
global-exclude .coverage*
14+
global-exclude .DS_Store
15+
global-exclude __pycache__

NOTICE renamed to NOTICE.txt

File renamed without changes.
File renamed without changes.

pytest.ini

-7
This file was deleted.

setup.cfg

+22-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,23 @@
11
[metadata]
2-
license_file = LICENSE
2+
license_files =
3+
LICENSE.txt
4+
NOTICE.txt
5+
THIRD_PARTY.txt
6+
7+
[flake8]
8+
max-line-length = 120
9+
10+
[tool:pytest]
11+
addopts =
12+
--verbose
13+
--capture=fd
14+
filterwarnings =
15+
ignore::DeprecationWarning
16+
ignore::UserWarning
17+
18+
[isort]
19+
multi_line_output=3
20+
include_trailing_comma=True
21+
force_grid_wrap=0
22+
use_parentheses=True
23+
line_length=120

setup.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22
from io import open
3-
from setuptools import setup, find_packages
3+
from setuptools import setup
44

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

0 commit comments

Comments
 (0)