-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (33 loc) · 843 Bytes
/
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
41
42
43
#!/usr/bin/env python
# coding=utf-8
import os
import io
from setuptools import setup, find_packages
version = '0.1.0'
setup(
name='Faker',
version=version,
description="Faker is a Python package that help you fake realistic test data in CSV.",
entry_points={
'console_scripts': ['faker=faker.cli:execute_from_command_line','csvfaker = faker.csvfaker.csvfaker:main'],
},
keywords='faker data mock',
license='MIT License',
packages=find_packages(),
platforms=["any"],
install_requires=[
"python-dateutil>=2.4",
"six",
],
extras_require={
':python_version=="2.7"': [
'ipaddress',
],
':python_version=="3.0"': [
'importlib',
],
':python_version=="3.2"': [
'ipaddress',
],
}
)