From 09dd2d70f7900d570d2af371d3a0ca130c1d5291 Mon Sep 17 00:00:00 2001 From: Gustavo Furtado Date: Tue, 15 Mar 2022 13:59:38 -0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=96=20Release=200.1.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- setup.cfg | 5 +++++ setup.py | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 54 insertions(+), 1 deletion(-) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 464c8a2..89a404d 100644 --- a/.gitignore +++ b/.gitignore @@ -130,4 +130,4 @@ dmypy.json _rascunho.ipynb -components/tests +upload_to_pypi.bat diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..f1078c9 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,5 @@ +[metadata] +description-file = README.md + +[easy_install] + diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..bbe610d --- /dev/null +++ b/setup.py @@ -0,0 +1,48 @@ +from setuptools import setup +from os import path + +this_directory = path.abspath(path.dirname(__file__)) +with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f: + long_description = f.read() + +setup( + name = 'dash-charlotte', + packages = [ + 'dash_charlotte', + 'dash_charlotte.components', + 'dash_charlotte.layouts', + 'dash_charlotte.themes', + ], + version = '0.1.0', + license = 'MIT', + description = 'A package of themes, tools and components for Plotly-Dash web dashboards.', + long_description = long_description, + long_description_content_type = 'text/markdown', + author = 'Gustavo Furtado', + author_email = 'gustavofurtado2@gmail.com', + url = 'https://github.com/GusFurtado/dash-charlotte', + download_url = 'https://github.com/GusFurtado/dash-charlotte/archive/0.1.0.tar.gz', + + keywords = [ + 'dashboard', + 'plotly' + ], + + install_requires = [ + 'dash', + 'dash-labs', + 'dash-bootstrap-components' + ], + + classifiers = [ + 'Development Status :: 2 - Pre-Alpha', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Software Development :: User Interfaces', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.6' + ] +) \ No newline at end of file