forked from jmoiron/speedparser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (44 loc) · 1.28 KB
/
setup.py
File metadata and controls
51 lines (44 loc) · 1.28 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup script for speedparser."""
from setuptools import setup, find_packages
import sys, os
try:
from speedparser import VERSION
version = ".".join(map(str, VERSION))
except:
version = '0.1.8'
# some trove classifiers:
# License :: OSI Approved :: MIT License
# Intended Audience :: Developers
# Operating System :: POSIX
setup(
name='speedparser',
version=version,
description="feedparser but faster and worse",
long_description=open('README.rst').read(),
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: POSIX',
'Development Status :: 4 - Beta',
],
keywords='feedparser rss atom rdf lxml',
author='Jason Moiron',
author_email='jason@hiidef.com',
url='https://github.com/hiidef/speedparser/',
license='MIT',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
test_suite="tests",
install_requires=[
# -*- Extra requirements: -*-
# 'feedparser>=0.5',
'lxml',
],
entry_points="""
# -*- Entry points: -*-
""",
)