forked from hchasestevens/bellybutton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (35 loc) · 1.14 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
from setuptools import setup
setup(
name='bellybutton',
packages=['bellybutton'],
platforms='any',
version='0.2.5',
description='Custom Python linting through AST expressions.',
author='H. Chase Stevens',
author_email='chase@chasestevens.com',
url='https://github.com/hchasestevens/bellybutton',
license='MIT',
install_requires=[
'astpath[xpath]==0.6.1',
'pyyaml>=3.12,<4.0',
'lxml>=4.1.1',
],
tests_require=['pytest>=3.1.2', 'future>=0.16.0'],
extras_require={'dev': ['pytest==3.1.2', 'future>=0.16.0']},
entry_points={
'console_scripts': [
'bellybutton = bellybutton.cli:main',
],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
]
)