forked from ghodss/pynote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 854 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
30
31
from setuptools import setup
import pynote
with open('README.rst') as f:
long_description = f.read()
setup(
name='pynote',
version=pynote.__version__,
description='Manage notes on the commandline',
long_description=long_description,
author='Stefan Tatschner',
author_email='[email protected]',
url='https://github.com/rumpelsepp/pynote',
license=pynote.__license__,
packages=['pynote'],
install_requires=['plaintable', 'babel', 'click', 'pyxdg'],
entry_points={
'console_scripts': [
'note = pynote.cli:cli',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.4',
],
)