-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 887 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
29
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# (c) 2017 Marcos Dione <[email protected]>
# for licensing details see the file LICENSE.txt
from distutils.core import setup
setup(
name ='dinant',
version = '0.6',
description = 'An attempt to make regular expressions more readable.',
author = 'Marcos Dione',
author_email = '[email protected]',
url = 'https://github.com/StyXman/dinant',
py_modules = [ 'dinant' ],
license = 'GPLv3',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
)