-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (26 loc) · 805 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
from setuptools import setup, find_packages
def load_requirements(fname):
with open(fname, 'r') as f:
lines = f.readlines()
return lines
def read_readme():
with open('README.md', 'r') as f:
return f.read()
setup(
name='rjco_scraping',
description='web scraping for "rama judicial colombiana"',
long_description=read_readme(),
url='https://github.com/DanielGnzlzVll/rjco_scraping',
author='Daniel gonzalez',
author_email='[email protected]',
license='APACHE',
version='0.0.6',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=load_requirements("requirements.txt"),
entry_points='''
[console_scripts]
rjco_scraping=rjco_scraping.scraping:scraping_wraper
''',
)