Skip to content

Commit 175abf4

Browse files
committed
- more updates and cosmetics
1 parent e11fefe commit 175abf4

File tree

5 files changed

+17
-7
lines changed

5 files changed

+17
-7
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ pyvenv.cfg
1717
/_build/
1818
/bin/
1919
/_build/
20-
/build/
2120
/develop-eggs/
2221
/dist/
2322
/eggs/

MANIFEST.in

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
1+
include *.py
2+
include *.rst
13
include *.txt
2-
include .coveragerc
4+
include buildout.cfg
35
include tox.ini
46

57
include .editorconfig
68
exclude .editorconfig
79

8-
include appveyor.yml
9-
exclude appveyor.yml
10+
include *.yml
11+
exclude *.yml
12+
13+
include .gitignore
14+
exclude .gitignore
15+
16+
exclude MANIFEST.in
1017

1118
recursive-include docs *.ast
1219
recursive-include docs *.bat
1320
recursive-include docs *.jpg
1421
recursive-include docs *.py
1522
recursive-include docs *.rst
16-
recursive-include docs *.txt
1723
recursive-include docs Makefile
18-
recursive-include src *.rst
24+
recursive-include src *.py
1925
recursive-include tests *.py

appveyor.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@ environment:
1414
- PROFILE: py37
1515
PYTHON_VERSION: "3.7"
1616
TOXENV: "py37,py37-datetime"
17+
- PROFILE: py38
18+
PYTHON_VERSION: "3.8"
19+
TOXENV: "py38,py38-datetime"
20+
1721

1822
cache:
1923
- '%LOCALAPPDATA%\pip\Cache'

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
SPHINXOPTS =
66
SPHINXBUILD = sphinx-build
77
PAPER =
8-
BUILDDIR = ../build/docs
8+
BUILDDIR = ../_build/docs
99

1010
# User-friendly check for sphinx-build
1111
#ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1)

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def read(*rnames):
4242
long_description=read('README.rst') + '\n' + read('CHANGES.rst'),
4343
long_description_content_type='text/x-rst',
4444
classifiers=[
45+
'Development Status :: 6 - Mature',
4546
'License :: OSI Approved :: Zope Public License',
4647
'Programming Language :: Python',
4748
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)