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