-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
29 lines (25 loc) · 813 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
from setuptools import setup
from os import path
__version__ = '1.1.1'
here = path.abspath(path.dirname(__file__))
install_requires = ['sphinx', 'flake8', 'coverage']
dependency_links = []
setup(
name='gitkv',
version=__version__,
description='Use a git repo as a key-value store.',
url='https://github.com/edouardklein/gitkv',
download_url='https://github.com/edouardklein/gitkv/tarball/' +
__version__,
license='AGPLv3',
classifiers=[
'Programming Language :: Python :: 3',
],
keywords='gitkv use a git repo as a key-value store.',
packages=['gitkv'],
include_package_data=True,
author='HaiLuan Nguyen, Edouard Klein',
install_requires=install_requires,
dependency_links=dependency_links,
author_email='[email protected]'
)