We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bcca148 commit edd4453Copy full SHA for edd4453
components/__init__.py
@@ -1,4 +1,4 @@
1
"""
2
Just my __init__.py to conform to standards.
3
4
-__version__ = "3.0.1-alpha"
+__version__ = "3.0.1-alpha-dev"
setup.py
@@ -1,4 +1,5 @@
from distutils.core import setup
+from components import __version__
import os
5
@@ -12,7 +13,7 @@ def get_font_paths():
12
13
14
setup(
15
name="PyGame Objects",
- version="3.0.1-alpha",
16
+ version=__version__,
17
author="Chad Estioco",
18
author_email="[email protected]",
19
url="https://github.com/skytreader/PyGame-Objects",
0 commit comments