forked from guyskk/pybeautifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 973 Bytes
/
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
# coding: utf-8
from os.path import dirname, join
from setuptools import setup
with open(join(dirname(__file__), 'README.md')) as f:
long_description = f.read()
setup(
name='pybeautifier',
version='0.1.2',
description='Python beautifier tcp server',
long_description=long_description,
url='https://github.com/guyskk/pybeautifier',
author='guyskk',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
"Operating System :: POSIX",
],
keywords='beautifier autopep8 yapf isort',
install_requires=['python-daemon>=2.1.2'],
py_modules=["pybeautifier"],
entry_points={
'console_scripts': [
'pybeautifier=pybeautifier:main',
],
},
)