-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
46 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
39
40
41
42
43
44
45
from setuptools import setup, find_packages
DESCRIPTION = 'Python-based XML/HTML Compiler'
LONG_DESCRIPTION = """
RapydML
===========
RapydML is a Pythonic abstraction of XML/HTML, adding more
functionality, ability to easily integrate it with any HTML
templating framework, and create your own subset of XML whose
rules will be enforced through RapydML compiler.
Installation
------------
To install RapydML simply use easy_install or pip:
pip install rapydml
or
easy_install rapydml
License
-------
The project is GPLv3, but the output is license free.
See http://www.gnu.org/licenses/gpl-faq.html#WhatCaseIsOutputGPL.
"""
setup(name='rapydml',
version='0.0.1',
packages=['rapydml'],
package_data={'rapydml': ['*.txt', 'lib/*', 'markup/*']},
author='Alexander Tsepkov',
url='http://rapydml.pyjeon.com',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
platforms=['any'],
license='GNU GPL3',
install_requires=[],
scripts=['bin/rapydml']
)