forked from MFreidank/AnkiVim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (20 loc) · 786 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
from setuptools import setup, find_packages
with open("README.rst", "r") as f:
long_description = f.read()
VERSION = "1.0"
setup(name="AnkiVim",
version=VERSION,
url="https://github.com/MFreidank/VimForAnki",
download_url="https://github.com/MFreidank/VimForAnki/tarball/{}".format(VERSION),
description="Use vim to rapidly write textfiles immediately importable into anki(1).",
scripts=['script/anki-vim'],
long_description=long_description,
author="Moritz Freidank",
author_email="[email protected]",
maintainer="Moritz Freidank",
maintainer_email="[email protected]",
license="MIT",
packages=find_packages(exclude=("tests", "tests.*")),
include_package_data=True,
zip_safe=False,
)