forked from lervag/apy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·39 lines (33 loc) · 892 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
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/env python
"""Setup script for apy"""
import codecs
from setuptools import setup, find_packages
def readme():
"""Use README as long description"""
with codecs.open('README.md', encoding='utf-8') as f:
return f.read()
setup(
name='apy',
version='0.9.1',
description='CLI script for interacting with local Anki collection',
long_description=readme(),
url='https://github.com/lervag/apy',
author='Karl Yngve Lervåg',
author_email='[email protected]',
classifiers=[
'Programming Language :: Python :: 3',
],
install_requires=[
'beautifulsoup4',
'click',
'Markdown',
'readchar',
'markdownify',
],
entry_points='''
[console_scripts]
apy=apy.cli:main
''',
packages=find_packages(exclude=('tests', 'tests.*')),
tests_require=['pytest']
)