This repository was archived by the owner on Apr 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathsetup.py
53 lines (49 loc) · 1.41 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
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
from setuptools import find_packages
from setuptools import setup
from undebt import __version__
setup(
name="undebt",
version=__version__,
description="A fast, straightforward, reliable tool for performing massive, automated code refactoring",
long_description="Check out Undebt on `GitHub <https://github.com/Yelp/undebt>`_!",
license="Copyright Yelp, Inc. 2016",
url="https://github.com/Yelp/undebt",
packages=find_packages(exclude=[
"tests",
"docs",
]),
install_requires=[
'pyparsing',
],
extras_require={
"testing": [
"flake8",
"pytest",
"mock",
"coverage",
],
"cPyparsing": [
"cPyparsing",
],
},
entry_points={
'console_scripts': [
'undebt = undebt.__main__:main',
],
},
classifiers=[
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Intended Audience :: Developers",
"Topic :: Software Development",
"Topic :: Utilities",
"Environment :: Console",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
]
)