-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (30 loc) · 1009 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from __future__ import with_statement
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
ledgrid_classifiers = [
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries",
"Topic :: Utilities",
]
with open("README.rst", "r") as fp:
ledgrid_long_description = fp.read()
setup(name="ledgrid",
description = 'An 8x8 grid of virtual LEDs implemented in Pygame.',
version=0.4,
author="Zeth",
author_email="theology@gmail.com",
py_modules=["ledgrid"],
install_requires=[
'pygame'
],
long_description=ledgrid_long_description,
license="BSD",
classifiers=ledgrid_classifiers,
url = 'https://github.com/zeth/ledgrid', # use the URL to the github repo
#download_url = 'https://github.com/zeth/ledgrid/tarball/0.1',
)