-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (45 loc) · 1.5 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
38
39
40
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
# (c) 2010, Marcin Kasperski
from setuptools import setup, find_packages
import os
execfile(os.path.join(os.path.dirname(__file__), "src", "mekk", "rtm", "version.py"))
long_description = open("README.txt").read()
classifiers = [
"Programming Language :: Python",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
# TODO: Development Status, Environment, Topic
]
setup(name='mekk.rtm',
version=VERSION,
description="RememberTheMilk client API and command line client",
long_description=long_description,
classifiers=classifiers,
keywords='rtm,RememberTheMilk',
author='Marcin Kasperski',
author_email='Marcin.Kasperski@mekk.waw.pl',
url='http://bitbucket.org/Mekk/rtmimport',
license='LGPL',
package_dir={'':'src'},
packages=find_packages('src', exclude=['ez_setup', 'examples', 'tests']),
namespace_packages=['mekk'],
test_suite = 'nose.collector',
zip_safe=False,
install_requires=[
'simplejson',
'keyring>=0.3',
'python-dateutil',
],
tests_require=[
'nose',
'Mock>=0.7b1',
],
entry_points = {
'console_scripts': [
'rtmimport = mekk.rtm.helpers.run_import:run',
'rtmtag = mekk.rtm.helpers.run_tag:run',
'rtmmove = mekk.rtm.helpers.run_move:run',
'rtmexport = mekk.rtm.helpers.run_export:run',
],
},
)