-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 843 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 843 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
32
33
34
35
import os
from setuptools import setup, find_packages
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
python_requires='>3.6',
name='grabs',
version='0.1',
description='Grab documents and images from http://bibliotheques-specialisees.paris.fr',
long_description=read('README.md'),
packages=find_packages(),
py_modules=['cli'],
license= "WTFPL",
install_requires=[
'Click',
'requests',
'bs4',
'Pillow',
'dataclasses'
],
classifiers=[],
entry_points='''
[console_scripts]
grabs=cli:grab
''',
project_urls={
"Documentation": "https://github.com/HueyNemud/python-grabs",
"Source Code": "https://github.com/HueyNemud/python-grabs",
},
)