-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·27 lines (26 loc) · 910 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
from setuptools import setup
setup(
name='Novelty',
version='1.0.4',
packages=['Novelty'],
url='https://github.com/Fuzen-py/Novelty',
license='MIT',
author='Fuzen.py',
author_email='',
description='Python 3 Aiohttp Novelupdates Scraper',
long_description='Based on Raitonoberu, Novelty is a Novelupdates scraper to provide a convenient access',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries'
],
keywords="NovelUpdates asyncio aiohttp scraping Novelty",
install_requires=['aiohttp', 'bs4', 'lxml'],
entry_points={
'console_scripts': [
'novelty=Novelty:main'
]
})