-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
49 lines (43 loc) · 1.5 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
install_requires = [
'aiohttp>=2.2.0', 'beautifulsoup4>=4.6.0']
try:
with open('README.rst') as f:
readme = f.read()
except FileNotFoundError:
readme = ""
setup(
name='nsfw_dl',
author='IzunaDevs',
author_email='[email protected]',
url='https://github.com/IzunaDevs/nsfw_dl',
version='0.4.2',
packages=find_packages(),
license='MIT',
description='Python 3 package for downloading nsfw images.',
long_description=readme,
maintainer_email='[email protected]',
download_url='https://github.com/IzunaDevs/nsfw_dl',
include_package_data=True,
install_requires=install_requires,
tests_require=['pytest', 'flake8', 'pyflakes', 'coverage',
'isort', 'pytest-cov', 'pytest-mock',
'pytest-timeout', 'pytest-asyncio',
'pylint'],
entry_points={
'console_scripts': ['nsfw_dl=nsfw_dl.__main__:main',
'nsfw-dl=nsfw_dl.__main__:main'],
},
platforms='Any',
classifiers=[
'Development Status :: 5 - Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities'
]
)