-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 767 Bytes
/
setup.py
File metadata and controls
20 lines (18 loc) · 767 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
from setuptools import setup
setup(name='awk',
version='1.2.1',
py_modules=['awk'],
author='Simone Bronzini',
author_email='simone.bronzini@moveax.it',
url='https://github.com/SimoneBronzini/awk',
license='http://opensource.org/licenses/MIT',
description='A library to provide advanced awk-like functionalities for file manipulation in Python.',
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Text Processing :: General',
'Topic :: Software Development :: Libraries :: Python Modules',
],)