setup.py
This commit is contained in:
parent
dd5791d933
commit
74df65b186
@ -2,6 +2,8 @@ import ctypes
|
||||
from .internal import _SDL, errcheck, Version
|
||||
from enum import CEnum
|
||||
|
||||
__version__ = '0.1.dev'
|
||||
|
||||
# Constants
|
||||
class InitFlags(CEnum):
|
||||
TIMER = 0x00000001
|
||||
|
14
setup.py
Normal file
14
setup.py
Normal file
@ -0,0 +1,14 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
from distutils.core import setup
|
||||
from photon import __version__
|
||||
|
||||
setup(name='photon',
|
||||
version=__version__,
|
||||
description="experimental python graphics library",
|
||||
author="James Turk",
|
||||
author_email="james.p.turk@gmail.com",
|
||||
url="http://github.com/jamesturk/photon/",
|
||||
packages=["photon", "photon.tests"],
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user