diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..15422400 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include LICENSE +include README.md +include README.pt-br.md diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..0185f2dc --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,5 @@ +[build-system] +requires = [ + "setuptools>=42", + "wheel" +] \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..1152b325 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import find_packages, setup + +setup( + name="BancosBrasileiros", + version="0.1.0", + description="A package for Brazilian banks information", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + author="guibranco", + author_email="author@example.com", + url="https://github.com/guibranco/BancosBrasileiros", + packages=find_packages(where="src"), + package_dir={"": "src"}, + include_package_data=True, + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], +)