-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
34 lines (31 loc) · 967 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
import os
from setuptools import setup
def read (*paths):
with open (os.path.join (*paths), 'r') as aFile:
return aFile.read()
setup (
name = 'Eden',
version = '2.1.13 Modules, demo on YouTube',
description = 'Eden - Event Driven Evaluation Nodes',
long_description = (
read ('README.md') + '\n\n' +
read ('qQuickLicence.txt')
),
keywords = ['eden', 'kivy', 'winforms', 'observer', 'functional'],
url = 'http://github.com/JdeH/Eden/',
license = 'qQuickLicence',
author = 'Jacques de Hooge',
author_email = '[email protected]',
packages = ['eden'],
include_package_data = True,
install_requires = ['Kivy == 1.8'],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: Other/Proprietary License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
],
)