-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
40 lines (37 loc) · 1.62 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
40
import os, sys, re, codecs
from setuptools import setup, find_packages
def read(*parts):
# intentionally *not* adding an encoding option to open
# see here: https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
return codecs.open(os.path.join(os.path.abspath(os.path.dirname(__file__)), *parts), 'r').read()
long_description = read('README.rst')
setup(name="xeger",
version="0.3.4",
url="https://github.com/crdoconnor/xeger",
description="A library for generating random strings from a valid regular expression.",
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Build Tools',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'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',
],
keywords='regular expressions regexp testing random generator',
author='Colm O\'Connor',
author_email='[email protected]',
license='BSD',
install_requires=[],
packages=find_packages(exclude=["docs", "tests*"]),
zip_safe=False,
test_suite='xeger.tests.suite',
)