-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (26 loc) · 1001 Bytes
/
setup.py
File metadata and controls
33 lines (26 loc) · 1001 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
27
28
29
30
31
32
#!/usr/bin/python
from setuptools import setup
from jindo.__init__ import __version__ as VERSION
setup(name="jindo",
license = "BSD",
version=VERSION,
description="Command-line tool and library for (mt) API",
long_description=open("README", "r").read(),
maintainer="Rob Cakebread",
author="Rob Cakebread",
author_email="cakebread at gmail dawt cawm",
url="http://localhost/jindo/",
keywords="API mt",
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=["setuptools", "simplejson"],
tests_require=["nose"],
packages=['jindo'],
package_dir={'jindo':'jindo'},
entry_points={'console_scripts': ['jindo = jindo.cli:main',]},
test_suite = 'nose.collector',
)