-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 996 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 996 Bytes
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
from setuptools import setup
def read(filename):
with open(filename) as f:
return f.read()
setup(
name='simplewebscraper',
version='1.043',
license='lgpl',
packages=['simplewebscraper'],
package_dir={'simplewebscraper': 'src'},
install_requires = ["requests[security]"],
package_data={'simplewebscraper': ['README.rst']},
author='Alexander Ward',
author_email='alexander.ward1@gmail.com',
maintainer_email = 'alexander.ward1@gmail.com',
description='Python library that makes web scraping very simple.',
long_description=read('README.rst'),
url='https://github.com/alexanderward/simplewebscraper',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Operating System :: OS Independent',
]
)