-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
38 lines (30 loc) · 1.03 KB
/
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
32
33
34
35
36
37
from setuptools import setup, find_packages
import sys
import journal
required = []
if sys.version_info[:2] < (2,6):
required.append('argparse')
setup(
name = 'journal',
version = journal.__version__,
description = 'A CLI tool to help with keeping a work/personal journal',
long_description = open('README.markdown').read() + '\n\n' + open('HISTORY.markdown').read(),
author = journal.__author__,
author_email = '[email protected]',
url = 'https://github.com/askedrelic/journal',
license = open("LICENSE.txt").read(),
packages = find_packages(),
entry_points = """
[console_scripts]
journal = journal.main:main""",
test_suite = 'tests',
install_requires = required,
classifiers = (
'Intended Audience :: Developers',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
),
)