Skip to content

Commit bb628dd

Browse files
committed
Fix pypi setup to include all packages
1 parent 835f8d2 commit bb628dd

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

setup.py

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,16 @@
33
setup(
44
name='tincan',
55
packages=[
6-
'tincan'
6+
'tincan',
7+
'tincan/conversions',
8+
'tincan/documents',
79
],
8-
version='0.0.1',
10+
version='0.0.2',
911
description='A Python library for implementing Tin Can API.',
1012
author='Rustici Software',
1113
author_email='mailto:[email protected]',
14+
maintainer='Brian J. Miller',
15+
maintainer_email='mailto:[email protected]',
1216
url='http://rusticisoftware.github.io/TinCanPython/',
1317
license='Apache License 2.0',
1418
keywords=[
@@ -25,4 +29,4 @@
2529
'aniso8601',
2630
'pytz',
2731
],
28-
)
32+
)

0 commit comments

Comments
 (0)