forked from amccollum/microtron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·43 lines (34 loc) · 987 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
35
36
37
38
39
40
41
42
43
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""Python microformats parser"""
try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
classifiers = """\
Development Status :: 3 - Alpha
Environment :: Console
Intended Audience :: Information Technology
License :: OSI Approved :: MIT License
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
"""
doc_lines = __doc__.split('\n')
setup(
name='Microtron',
version='0.16',
description='Microformats parser',
author='Andrew McCollum',
author_email='[email protected]',
license='MIT',
url='http://github.com/amccollum/microtron',
install_requires = [
'lxml >= 2.2.2',
'isodate >= 0.4.0',
],
package_data = {'': ['*.xml']},
packages = find_packages(exclude=['ez_setup']),
zip_safe = False,
)