forked from ESSS/esss_fix_format
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (40 loc) · 1.2 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
from setuptools import find_packages, setup
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as changelog_file:
changelog = changelog_file.read()
requirements = [
'click>=6.0',
'isort',
'pydevf==0.1.5',
]
setup(
name='esss_fix_format',
version='2.0.0',
description="ESSS code formatter and checker",
long_description=readme + '\n\n' + changelog,
author="ESSS",
author_email='[email protected]',
url='https://github.com/esss/esss_fix_format',
packages=find_packages(where="src"),
package_dir={"": "src"},
entry_points={
'console_scripts': [
'fix-format=esss_fix_format.cli:main',
'ff=esss_fix_format.cli:main',
]
},
include_package_data=True,
install_requires=requirements,
license="MIT license",
zip_safe=False,
keywords='esss_fix_format',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)