-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
45 lines (39 loc) · 1.12 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
import os
from setuptools import (
find_packages,
setup,
)
PROJECT_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(PROJECT_ROOT, 'README.rst')) as readme_file:
README = readme_file.read()
with open(os.path.join(PROJECT_ROOT, 'NEWS.txt')) as news_file:
NEWS = news_file.read()
version = '0.8'
install_requires = [
'babel',
'deskapi',
'txlib-too',
]
setup(
name='shuttle',
version=version,
description="A command-line interface for moving content between help desk and translation systems",
long_description=README + '\n\n' + NEWS,
classifiers=[
# Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
],
keywords='',
author='Nathan Yergler',
author_email='[email protected]',
url='http://github.com/eventbrite/localization_shuttle',
license='Apache License v2',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
entry_points={
'console_scripts':
['shuttle=shuttle.sync:main']
},
)