Skip to content

Commit 2592b98

Browse files
committed
Merge pull request #86 from plotly/fix-ignores
Improve ignores & setup.py
1 parent b687b18 commit 2592b98

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

packages/dash-html-components/.npmignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,7 @@ venv/
66
*.pyc
77
*.log
88
.DS_Store
9-
9+
.idea
10+
tests
11+
dist
12+
.circleci

packages/dash-html-components/CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44

5+
## [UNRELEASED] - 2018-12-17
6+
### Changed
7+
- Added `.idea`, `tests`, `dist`, `.circleci` to npmignore.
8+
- Added repository url and long_description to setup.py
9+
510
## [0.13.4] - 2018-12-17
611
### Fixed
712
- Fix build from wrong dash version.

packages/dash-html-components/setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import io
12
from setuptools import setup
23

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

0 commit comments

Comments
 (0)