-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 907 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 907 Bytes
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
from setuptools import setup, find_packages
setup(
name='bujo',
version='1.0.9',
description='A CLI tool for tracking anything and everything',
keywords="cli note diary journal note-taking bullet_journal",
long_description=open('README.rst').read(),
long_description_content_type="text/markdown",
author="Oref",
author_email='orefdev@gmail.com',
url='https://github.com/oref/PyBujo.git',
install_requires=[
'Click',
'pyyaml',
'pick',
],
packages=['bujo'],
entry_points={
'console_scripts': ['bujo = bujo:cli'],
},
classifiers=(
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7'
),
)