This repository was archived by the owner on May 27, 2019. It is now read-only.
File tree 5 files changed +11
-18
lines changed
5 files changed +11
-18
lines changed Original file line number Diff line number Diff line change 2
2
CHANGELOG
3
3
=========
4
4
5
- 0.1.0 (pending )
6
- ---------------
5
+ 0.1.dev1 (2016-09-01 )
6
+ ---------------------
7
7
+ First implementation
Original file line number Diff line number Diff line change 1
-
2
1
include AUTHORS.rst
3
-
4
2
include CONTRIBUTING.rst
5
3
include HISTORY.rst
6
4
include LICENSE
7
5
include README.rst
8
6
9
- recursive-include tests *
7
+ recursive-include wagtailsocialfeed/static *
8
+ recursive-include wagtailsocialfeed/templates *
9
+
10
10
recursive-exclude * __pycache__
11
11
recursive-exclude * *.py[co]
12
-
13
- recursive-include docs *.rst conf.py Makefile make.bat *.jpg *.png *.gif
Original file line number Diff line number Diff line change @@ -80,11 +80,10 @@ servedocs: docs ## compile the docs watching for changes
80
80
watchmedo shell-command -p ' *.rst' -c ' $(MAKE) -C docs html' -R -D .
81
81
82
82
release : dist # # package and upload a release
83
- twine upload dist/*
83
+ twine upload -r lukkien dist/*
84
84
85
85
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
88
87
ls -l dist
89
88
90
89
install : clean # # install the package to the active Python's site-packages
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
# -*- coding: utf-8 -*-
3
3
4
- from setuptools import setup
4
+ from setuptools import setup , find_packages
5
5
6
6
with open ('README.rst' ) as readme_file :
7
7
readme = readme_file .read ()
38
38
39
39
setup (
40
40
name = 'wagtailsocialfeed' ,
41
- version = '0.1.0 ' ,
41
+ version = '0.1.dev1 ' ,
42
42
description = "A Wagtail module that provides pages and content blocks to show social media feeds" , # NOQA
43
43
long_description = readme + '\n \n ' + changelog ,
44
44
author = "Tim Leguijt" ,
45
45
46
46
url = 'https://github.com/LUKKIEN/wagtailsocialfeed' ,
47
- packages = [
48
- 'wagtailsocialfeed' ,
49
- ],
50
- package_dir = {'wagtailsocialfeed' :
51
- 'wagtailsocialfeed' },
47
+ packages = find_packages (exclude = ['tests*' ]),
52
48
include_package_data = True ,
53
49
install_requires = install_requires ,
54
50
license = "" ,
Original file line number Diff line number Diff line change 1
- __version__ = '0.1.0 '
1
+ __version__ = '0.1.dev1 '
You can’t perform that action at this time.
0 commit comments