-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
45 lines (41 loc) · 1.41 KB
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("HISTORY.md") as history_file:
history = history_file.read()
setup(
name="simplecep",
version="0.1.1",
description=(
"Fetch CEP addresses consistently using Correios API, "
"third-party APIs as fallbacks and cache the results."
),
long_description=readme + "\n\n" + history,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/cauethenorio/simplecep",
author="Cauê Thenório",
author_email="caue@thenorio.com.br",
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires=">=3.6",
install_requires=[],
test_suite="tests",
include_package_data=True,
zip_safe=True,
keywords=["cep", "correios", "brasil", "endereço"],
classifiers=[
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Natural Language :: English",
],
)