-
-
Notifications
You must be signed in to change notification settings - Fork 104
/
setup.py
executable file
·38 lines (36 loc) · 1.34 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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
import io
from setuptools import setup, find_packages
setup(name='kb-manager',
version='0.1.7',
description='A minimalist knowledge base manager',
keywords='kb',
author='gnc',
author_email='[email protected]',
url='https://github.com/gnebbia/kb',
download_url='https://github.com/gnebbia/kb/archive/v0.1.7.tar.gz',
license='GPLv3',
long_description=io.open(
'./docs/README.md', 'r', encoding='utf-8').read(),
long_description_content_type="text/markdown",
platforms='any',
zip_safe=False,
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[ 'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Operating System :: OS Independent',
],
packages=find_packages(exclude=('tests',)),
include_package_data=True,
install_requires=["colored","toml","attr","attrs","gitpython"],
python_requires='>=3.6',
entry_points={
'console_scripts':[
'kb = kb.main:main',
]
},
)