-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
53 lines (50 loc) · 1.35 KB
/
setup.py
File metadata and controls
53 lines (50 loc) · 1.35 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
from setuptools import setup, find_packages
setup(
name='er',
version='0.2',
description='Generate data that matches a given regular expression.',
author="Simon Engledew",
author_email="simon@engledew.com",
url="https://github.com/simon-engledew/python-er",
install_requires=[
],
extras_require={
'tests': [
'nose'
],
':python_version < "3.4"': [
"enum34"
]
},
entry_points={
'console_scripts': [
'er = er:main',
],
},
zip_safe=True,
include_package_data=False,
packages=find_packages(),
license='MIT',
keywords=[
're',
'test',
'testing',
'data',
'fake',
'regular expression'
],
classifiers=[
'Development Status :: 1 - Planning',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.0',
'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'
],
)