forked from MegaIng/interegular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (33 loc) · 1.24 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
from pathlib import Path
from setuptools import setup
import re
__version__, = re.findall('__version__ = "(.*)"', open('interegular/__init__.py').read())
with open(Path(__file__).with_name('README.md')) as f:
long = f.read()
setup(
name='interegular',
version=__version__,
packages=['interegular', 'interegular.utils'],
package_data={'interegular': ['py.typed']},
install_requires=[],
python_requires=">=3.7",
author='MegaIng',
author_email='MegaIng <trampchamp@hotmail.de>',
description="a regex intersection checker",
long_description=long,
long_description_content_type='text/markdown',
license="MIT",
url='https://github.com/MegaIng/regex_intersections',
download_url='https://github.com/MegaIng/interegular/tarball/master',
classifiers=[
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)