19 lines
488 B
Python
19 lines
488 B
Python
|
from setuptools import setup
|
||
|
import editorconfig
|
||
|
|
||
|
setup(
|
||
|
name='EditorConfig',
|
||
|
version=editorconfig.__version__,
|
||
|
author='EditorConfig Team',
|
||
|
packages=['editorconfig'],
|
||
|
url='http://editorconfig.org/',
|
||
|
license='LICENSE.txt',
|
||
|
description='EditorConfig File Locator and Interpreter for Python',
|
||
|
long_description=open('README.rst').read(),
|
||
|
entry_points = {
|
||
|
'console_scripts': [
|
||
|
'editorconfig = editorconfig.main:main',
|
||
|
]
|
||
|
},
|
||
|
)
|