-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.01 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.01 KB
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
import os
from setuptools import setup
def read (*paths):
with open (os.path.join (*paths), 'r') as aFile:
return aFile.read()
setup (
name = 'LightOn',
version = '0.0.19',
description = 'LightOn - A lightweight Python course taking beginners seriously',
long_description = (
read ('README.rst') + '\n\n' +
read ('qQuickLicence.txt')
),
keywords = ['python', 'tutorial', 'course', 'primer', 'object', 'functional', 'pong'],
url = 'https://github.com/JdeH/LightOn/',
license = 'qQuickLicence',
author = 'Jacques de Hooge',
author_email = 'jacques.de.hooge@qquick.org',
packages = ['LightOn'],
include_package_data = True,
install_requires = ['pyglet'],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Education',
'Natural Language :: English',
'License :: Other/Proprietary License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
)