]> git.lizzy.rs Git - nhentai.git/blob - setup.py
a shocking typo: dojinshi -> doujinsi
[nhentai.git] / setup.py
1 from setuptools import setup, find_packages
2 from nhentai import __version__, __author__, __email__
3
4 with open('requirements.txt') as f:
5     requirements = [l for l in f.read().splitlines() if l]
6
7 setup(
8     name='nhentai',
9     version=__version__,
10     packages=find_packages(),
11
12     author=__author__,
13     author_email=__email__,
14     keywords='nhentai, doujinshi',
15     description='nhentai.net doujinshis downloader',
16     url='https://github.com/RicterZ/nhentai',
17     include_package_data=True,
18     zip_safe=False,
19
20     install_requires=requirements,
21     entry_points={
22         'console_scripts': [
23             'nhentai = nhentai.command:main',
24         ]
25     },
26     license='MIT',
27 )