forked from sky-uk/bslint
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 781 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
# -*- coding: utf-8 -*-
"""
BSLint
-----
BSLint is a linter for the BrightScript language.
"""
import re
from setuptools import setup, find_packages
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('bslint/bslint.py').read(),
re.M
).group(1)
setup(
name="bslint",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_data={'bslint': ['config/*.json', 'config/personal-words-list.txt', '../filepaths.py']},
entry_points={"console_scripts": ['bslint = bslint.bslint:main']},
version=version,
description="A linter tool for the BrightScript language.",
author="BSLint",
author_email="[email protected]",
url="https://github.com/sky-uk/bslint",
install_requires=['pyenchant==1.6.8']
)