-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.48 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
from setuptools import setup
versionContext = {}
with open('flake8_gettext/version.py') as f:
exec(f.read(), versionContext)
import sys
setup(
name='flake8_gettext',
description='flake8 plugin to warn the wrong arguments for gettext',
long_description=open("README.md").read(),
long_description_content_type='text/markdown',
version=versionContext['__version__'],
url='https://github.com/cielavenir/flake8_gettext',
license='0BSD',
author='cielavenir',
author_email='[email protected]',
packages=['flake8_gettext'],
keywords='flake8',
entry_points={'flake8.extension': ['GT01 = flake8_gettext.checker:GettextChecker']},
zip_safe=False,
# include_package_data=True,
platforms='any',
install_requires=['flake8>=3.0'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: PyPy',
]
)