-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (25 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·29 lines (25 loc) · 1.04 KB
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
#!/usr/bin/env python
from distutils.core 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='stefan@sevenbyte.org',
url='https://github.com/rumpelsepp/pynote',
license='MIT',
packages=['pynote'],
scripts=['note'],
data_files=[('share/locale/de/LC_MESSAGES', ['locale/de/LC_MESSAGES/pynote.mo']),
('share/man/man5', ['doc/man/noterc.5'])],
requires=['prettytable', 'pygments'],
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Natural Language :: German',
'Programming Language :: Python :: 3.3'
'Programming Language :: Python :: 3.4'])