diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..aa428f18 --- /dev/null +++ b/setup.py @@ -0,0 +1,20 @@ +from setuptools import find_packages, setup + +setup( + name="BancosBrasileiros", + version="0.1.0", + author="Your Name", + author_email="your.email@example.com", + description="A package for Brazilian banks information", + long_description=open("README.md").read(), + long_description_content_type="text/markdown", + url="https://github.com/guibranco/BancosBrasileiros", + packages=find_packages(), + classifiers=[ + "Programming Language :: Python :: 3", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + ], + python_requires=">=3.6", + install_requires=[], +)