-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (21 loc) · 703 Bytes
/
setup.py
File metadata and controls
28 lines (21 loc) · 703 Bytes
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
#!/usr/bin/env python
from setuptools import setup
from os.path import dirname, abspath, join
_here = abspath(dirname(__file__))
with open(join(_here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='csv2seed',
version='0.2.0',
url='https://github.com/ErickTucto/csv2seed',
description='CSV file converter to Laravel Seeders',
long_description=long_description,
keywords=['csv', 'laravel', 'seeders', 'seed', 'converter', 'generator'],
license='MIT',
author='Erick Tucto',
author_email='erick.tucto@outlook.com',
packages=['csv2seed'],
entry_points={
'console_scripts': ['csv2seed=csv2seed.cli:main']
}
)