-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 895 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
import setuptools
with open("README.md", "r") as fd:
long_description = fd.read()
with open("VERSION", "r") as fd:
version = fd.read().strip()
setuptools.setup(
name="regexp",
version=version,
author="Julien Castiaux",
author_email="[email protected]",
description="Finite automatons and grep-like tools.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Julien00859/regexp",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
],
)