-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 732 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 732 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
# When possible, use distribute_setup's version of tools
try:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
except ImportError:
from setuptools import setup, find_packages
setup(
name='rmshell',
version='0.0',
description='A command line shell for redmine',
author='Jesse Keating',
author_email='jesse.keating@rackspace.com',
url='https://github.com/rackerlabs/rmshell',
license='Apache 2.0',
packages=find_packages(where='src/'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['rmshell= rmshell.shell:cmd', ]},
requires=['pyredmine', ],
)