forked from lk-geimfari/mimesis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (38 loc) · 1.39 KB
/
setup.py
File metadata and controls
40 lines (38 loc) · 1.39 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
from distutils.core import setup
import elizabeth
setup(
name='elizabeth',
version=elizabeth.__version__,
packages=['elizabeth', 'elizabeth.core', 'elizabeth.core.interdata'],
keywords=['fake', 'data', 'testing',
'generate', 'faker', 'elizabeth',
'bootstrap', 'db', 'generic',
'church', 'dummy'
],
package_data={
'elizabeth': [
'data/*/*',
]
},
url='https://github.com/lk-geimfari/elizabeth',
license='MIT',
author=elizabeth.__author__,
author_email='likid.geimfari@gmail.com',
description='Elizabeth is a library that help you generate fake data.',
long_description="Elizabeth is a library to generate fake data."
"It's very useful when you need to bootstrap "
"your database.",
classifiers=[
"Development Status :: 4 - Beta",
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development',
'Topic :: Software Development :: Testing',
],
)