forked from abingham/traad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (32 loc) · 845 Bytes
/
setup.py
File metadata and controls
38 lines (32 loc) · 845 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
33
34
35
36
37
38
import sys
from setuptools import setup, find_packages
script_name, rope_lib = {
2: ('traad', 'rope'),
3: ('traad3', 'rope_py3k'),
}[sys.version_info.major]
setup(
name = 'traad',
version = '0.11',
packages = find_packages(),
# metadata for upload to PyPI
author = 'Austin Bingham',
author_email = 'austin.bingham@gmail.com',
description = 'A JSON+HTTP server for the rope Python refactoring library.',
license = 'MIT',
keywords = 'refactoring',
url = 'http://github.com/abingham/traad',
entry_points = {
'console_scripts': [
'{} = traad.server:main'.format(script_name),
],
},
install_requires=[
'decorator',
'eagertools',
'nose',
'pykka',
rope_lib,
'webtest',
'with_fixture',
],
)