Skip to content

Commit

Permalink
🔖 Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GusFurtado committed Mar 15, 2022
1 parent 0fb6eb9 commit 09dd2d7
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ dmypy.json


_rascunho.ipynb
components/tests
upload_to_pypi.bat
5 changes: 5 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[metadata]
description-file = README.md

[easy_install]

48 changes: 48 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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'
]
)

0 comments on commit 09dd2d7

Please sign in to comment.