24 lines
518 B
Python
Executable file
24 lines
518 B
Python
Executable file
# setup.py
|
|
|
|
long_description = open('README', 'r').read()
|
|
|
|
from distutils.core import setup
|
|
from pickle import load, dump
|
|
import os
|
|
|
|
"""
|
|
buildno = 0
|
|
if os.path.exists('buildno'):
|
|
buildno = load(open('buildno', 'rb'))
|
|
buildno += 1
|
|
dump(buildno, open('buildno', 'wb'))
|
|
"""
|
|
|
|
dist = setup(name = "roc",
|
|
version = "0.1.0",
|
|
description = "roc game engine",
|
|
long_description = long_description,
|
|
author = "Bradley Lawrence",
|
|
author_email = "codeninja@iambitter.org",
|
|
packages = ['roc'])
|
|
|