-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
64 lines (46 loc) · 1.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
setup(
name='code_monkey',
version='0.0.3',
description='A Python refactoring/static analysis tool',
# The project's main homepage.
url='https://github.com/ForSpareParts/code_monkey',
# Author details
author='David Jackson',
author_email='altmail@jackson-wallace.net',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Code Generators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
],
keywords='development code_generation static_analysis',
packages=['code_monkey'],
install_requires=[
'wsgiref==0.1.2',
'astroid==1.1.1',
'logilab-common==0.61.0'
],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,
# for example:
# $ pip install -e .[dev,test]
extras_require={
'test': [
'coverage==3.7.1',
'nose==1.3.3',
],
'dev': [
'Sphinx==1.3.1',
'sphinx-rtd-theme==0.1.8'
]
},
)