-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 740 Bytes
/
Copy pathsetup.py
File metadata and controls
34 lines (28 loc) · 740 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
31
32
33
34
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('remindr/remindr.py').read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(
name="taskyy",
packages=["remindr"],
entry_points={
"console_scripts": ['taskyy = remindr.remindr:main']
},
install_requires=[
'click',
'parsedatetime',
'tinydb',
'python-crontab'
],
version=version,
description="Taskyy is a command-line app for you remainders for mac.",
long_description=long_descr,
author="Mohammed Akhil",
author_email="akhilmohammed05@gmail.com",
url="https://github.com/MohammedAkhil",
)