-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0fb6eb9
commit 09dd2d7
Showing
3 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -130,4 +130,4 @@ dmypy.json | |
|
||
|
||
_rascunho.ipynb | ||
components/tests | ||
upload_to_pypi.bat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[metadata] | ||
description-file = README.md | ||
|
||
[easy_install] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
] | ||
) |