blob: f69a3054e58d508a47a8a237984bc3bea209f7d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
from setuptools import setup, find_packages
setup(
name = 'cameltris',
description = "Tetris clone",
version = '0.1',
author = 'Olivier Gayot',
author_email = 'olivier.gayot@sigexec.com',
packages = find_packages(),
)
|