Skip to content
This repository was archived by the owner on May 27, 2019. It is now read-only.

Commit b93cdb6

Browse files
committed
version 0.1.dev1
1 parent de54060 commit b93cdb6

File tree

5 files changed

+11
-18
lines changed

5 files changed

+11
-18
lines changed

CHANGELOG.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
CHANGELOG
33
=========
44

5-
0.1.0 (pending)
6-
---------------
5+
0.1.dev1 (2016-09-01)
6+
---------------------
77
+ First implementation

MANIFEST.in

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,11 @@
1-
21
include AUTHORS.rst
3-
42
include CONTRIBUTING.rst
53
include HISTORY.rst
64
include LICENSE
75
include README.rst
86

9-
recursive-include tests *
7+
recursive-include wagtailsocialfeed/static *
8+
recursive-include wagtailsocialfeed/templates *
9+
1010
recursive-exclude * __pycache__
1111
recursive-exclude * *.py[co]
12-
13-
recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif

Makefile

+2-3
Original file line numberDiff line numberDiff line change
@@ -80,11 +80,10 @@ servedocs: docs ## compile the docs watching for changes
8080
watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .
8181

8282
release: dist ## package and upload a release
83-
twine upload dist/*
83+
twine upload -r lukkien dist/*
8484

8585
dist: clean ## builds source and wheel package
86-
python setup.py sdist
87-
python setup.py bdist_wheel
86+
python setup.py sdist bdist_wheel
8887
ls -l dist
8988

9089
install: clean ## install the package to the active Python's site-packages

setup.py

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
33

4-
from setuptools import setup
4+
from setuptools import setup, find_packages
55

66
with open('README.rst') as readme_file:
77
readme = readme_file.read()
@@ -38,17 +38,13 @@
3838

3939
setup(
4040
name='wagtailsocialfeed',
41-
version='0.1.0',
41+
version='0.1.dev1',
4242
description="A Wagtail module that provides pages and content blocks to show social media feeds", # NOQA
4343
long_description=readme + '\n\n' + changelog,
4444
author="Tim Leguijt",
4545
author_email='[email protected]',
4646
url='https://github.com/LUKKIEN/wagtailsocialfeed',
47-
packages=[
48-
'wagtailsocialfeed',
49-
],
50-
package_dir={'wagtailsocialfeed':
51-
'wagtailsocialfeed'},
47+
packages=find_packages(exclude=['tests*']),
5248
include_package_data=True,
5349
install_requires=install_requires,
5450
license="",

wagtailsocialfeed/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.0'
1+
__version__ = '0.1.dev1'

0 commit comments

Comments
 (0)