Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit cb0fd4c

Browse files
committedAug 2, 2018
Use find_packages + manifest update
1 parent d76b905 commit cb0fd4c

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎MANIFEST.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
recursive-include demosys *.py *.glsl *.png
1+
recursive-include demosys *.glsl *.png *.jpg *.json
22

33
include README.md
4+
include LICENSE.txt

‎setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
44
name="demosys-py",
@@ -11,7 +11,7 @@
1111
author_email="eforselv@gmail.com",
1212
maintainer="Einar Forselv",
1313
maintainer_email="eforselv@gmail.com",
14-
packages=['demosys'],
14+
packages=find_packages(),
1515
include_package_data=True,
1616
keywords = ['opengl', 'framework', 'demoscene'],
1717
classifiers=[

0 commit comments

Comments
 (0)
Please sign in to comment.