Skip to content

Commit 26fd9d0

Browse files
committed
added a setup.py
1 parent 7b6f71e commit 26fd9d0

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
2+
from setuptools import setup
3+
# Try to get it to be pip installable
4+
setup(
5+
name='pyopengltk',
6+
version='0.0.1',
7+
author ='Jon Wright',
8+
url = 'http://github.com/jonwright/pyopengltk',
9+
py_modules=['pyopengltk'],
10+
long_description=open('README.md').read(),
11+
)

0 commit comments

Comments
 (0)