forked from asciimoo/exrex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (25 loc) · 847 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
from setuptools import setup, find_packages
setup(
name = 'exrex',
version = '0.9.3',
author = 'Adam Tauber',
author_email = '[email protected]',
description = 'Irregular methods for regular expressions',
license = 'AGPLv3+',
keywords = "regexp generators string generation regex simplification",
url = 'https://github.com/asciimoo/exrex',
scripts = ['exrex.py'],
py_modules = ['exrex'],
packages = find_packages(),
install_requires = [],
download_url = 'https://github.com/asciimoo/exrex/tarball/master',
entry_points={
"console_scripts": ["exrex=exrex:__main__"]
},
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities",
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3'
],
)