-
Notifications
You must be signed in to change notification settings - Fork 49
/
setup.py
executable file
·42 lines (37 loc) · 1.19 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
#!/usr/bin/env python
import os
import sys
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
__version__ = '0.11.11'
packages = [
'lassie',
'lassie.filters',
'lassie.filters.oembed'
]
setup(
name='lassie',
version=__version__,
install_requires=open("requirements.txt").read().split("\n"),
author='Mike Helmick',
license=open('LICENSE').read(),
url='https://github.com/michaelhelmick/lassie/tree/master',
keywords='lassie open graph web content scrape scraper',
description='Lassie is a Python library for retrieving content from websites and being returned in a pretty format.',
include_package_data=True,
packages=packages,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
]
)