-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (32 loc) · 1.05 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
32
33
34
35
36
37
38
39
# encoding: utf-8
"""
setup
~~~~~
:copyright: 2014 by Daniel Neuhäuser
:license: BSD, see LICENSE.rst for details
"""
from setuptools import setup
with open('README.rst', 'r') as readme:
long_description = readme.read()
setup(
name='oore',
description='Object-Oriented Regular Expressions',
long_description=long_description,
version='0.2.1',
author='Daniel Neuhäuser',
author_email='ich@danielneuhaeuser.de',
url='https://github.com/DasIch/oore',
py_modules=['oore'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
]
)