-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 699 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 699 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='ashaw_notes',
version='0.0.1',
description='Note taking made easy',
author='Adam Shaw',
author_email='adamryanshaw@gmail.com',
url='https://github.com/follower46/ashaw-notes',
packages=find_packages(exclude="tests"),
install_requires=[
'dateparser>=0.6.0',
'fakeredis>=0.8.0',
'logzero>=1.3.0',
'redis>=2.10.0',
'mock>=2.0.0',
'ddt>=1.1.0',
'PyQt5>=5.0',
'python_dateutil>=2.6.0',
'click>=6.0',
],
entry_points = {
'console_scripts': ['ashaw-notes=ashaw_notes.main:cli'],
}
)