1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
from setuptools import setup, find_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="pantomime",
version="0.6.1",
description="MIME type normalisation and labels.",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.6",
],
keywords="mime mimetypes file types",
author="Journalism Development Network, Inc.",
author_email="data@occrp.org",
url="http://github.com/alephdata/pantomime",
license="MIT",
packages=find_packages(exclude=["ez_setup", "examples", "test"]),
namespace_packages=[],
package_data={"pantomime": ["py.typed"]},
include_package_data=True,
zip_safe=False,
install_requires=[
"banal >= 0.3.5",
"normality >= 0.5.6",
],
tests_require=["nose"],
entry_points={},
extras_require={
"dev": [
"wheel>=0.29.0",
"twine",
"mypy",
"black",
"flake8>=2.6.0",
"pytest",
"pytest-cov",
"banal",
"coverage>=4.1",
]
},
)
|