forked from thatch/regexlint
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (35 loc) · 1.18 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
from setuptools import setup, find_packages
import os.path
with open('README.rst') as f:
README = f.read()
with open('requirements.txt') as f:
requires = f.read().strip().splitlines()
version = '1.6'
setup(name='regexlint',
version=version,
description='Linter for (Pygments) regular expressions',
long_description=README,
classifiers = [
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent', # I hope
'Topic :: Software Development :: Quality Assurance', # Closest to linting I see
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='',
author='Tim Hatch',
author_email='tim@timhatch.com',
url='https://github.com/thatch/regexlint',
license='Apache',
packages=find_packages('.'),
install_requires=requires,
entry_points={
'console_scripts': [
'regexlint=regexlint.cmdline:main',
],
},
tests_require=['pytest'],
)