forked from zeth/greco
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.02 KB
/
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
35
36
37
38
from __future__ import with_statement
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
import greco
greco_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:
greco_long_description = fp.read()
setup(name="greco",
description = "a fun typing game for learning the Green Code visual language.",
version=greco.__version__,
author="Zeth",
author_email="[email protected]",
packages=["greco"],
long_description=greco_long_description,
license="GPL",
classifiers=greco_classifiers,
url = 'http://ledui.github.io/',
install_requires=[
'ledgrid',
'greencode'
],
scripts=['bin/greco'],
include_package_data = True
)