Skip to content
This repository was archived by the owner on Jun 4, 2024. It is now read-only.

Improve ignores & setup.py #86

Merged
merged 4 commits into from
Dec 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,7 @@ venv/
*.pyc
*.log
.DS_Store

.idea
tests
dist
.circleci
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).

## [UNRELEASED] - 2018-12-17
### Changed
- Added `.idea`, `tests`, `dist`, `.circleci` to npmignore.
- Added repository url and long_description to setup.py

## [0.13.4] - 2018-12-17
### Fixed
- Fix build from wrong dash version.
Expand Down
4 changes: 4 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import io
from setuptools import setup

main_ns = {}
Expand All @@ -9,8 +10,11 @@
author='Chris Parmer',
author_email='[email protected]',
packages=['dash_html_components'],
url='https://github.com/plotly/dash-html-components',
include_package_data=True,
license='MIT',
description='Dash UI HTML component suite',
long_description=io.open('README.md', encoding='utf-8').read(),
long_description_content_type='text/markdown',
install_requires=['dash']
)