forked from adameste/anidbcli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.28 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
# coding=utf-8
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = ''.join(f.readlines())
setup(
name='anidbcli',
version='1.66',
keywords='Anidb UDP API CLI client ed2k rename mylist',
description='Simple CLI for managing your anime collection using AniDB UDP API.',
long_description=long_description,
author='Štěpán Adámek',
author_email='adamek.stepan@gmail.com',
license='MIT',
url='https://github.com/adameste/anidbcli',
zip_safe=False,
packages=find_packages(),
entry_points={
'console_scripts': [
'anidbcli = anidbcli:main',
]
},
install_requires=[
'click',
'pycryptodome',
'colorama',
'pyperclip',
'joblib'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Utilities',
'Topic :: Multimedia :: Video'
],
)