pyods/setup.py

23 lines
520 B
Python
Raw Permalink Normal View History

2017-04-25 22:01:59 -07:00
#!/usr/bin/env python3
from setuptools import setup
2019-03-06 19:30:14 -08:00
with open("requirements.txt") as f:
requirements = f.readlines()
2017-04-25 22:01:59 -07:00
setup(name='pyods',
2019-03-06 19:30:14 -08:00
version='0.0.2',
2017-04-25 22:01:59 -07:00
description='Open Directory Scraper',
2019-03-06 19:30:14 -08:00
url='https://git.davepedu.com/dave/pyods',
2017-04-25 22:01:59 -07:00
author='dpedu',
author_email='dave@davepedu.com',
packages=['pyods'],
entry_points={
'console_scripts': [
'pyods = pyods.cli:main'
]
},
2019-03-06 19:30:14 -08:00
install_requires=requirements,
2017-04-25 22:01:59 -07:00
zip_safe=False)