forked from riolet/poline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 1.02 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
import sys
import subprocess
from setuptools import setup, Command
setup(
name='poline',
version='0.2',
description='Python one-liners: Awk-like one-liners for python',
long_description='pol lets you do awk-like one liners in python.',
url='https://github.com/riolet/pol',
author='Rohana Rezel',
author_email='[email protected]',
maintainer='Rohana Rezel',
maintainer_email='[email protected]',
packages = ['poline'],
entry_points={
'console_scripts': ['pol = poline.poline:main'],
},
classifiers=[
'Topic :: System :: Operating System',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)