-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·53 lines (48 loc) · 1.31 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
41
42
43
44
45
46
47
48
49
50
51
52
53
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open("README.rst") as f:
long_description = f.read()
with open("CHANGES.rst") as f:
long_description += "\n" + f.read()
setup(
name="imio-luigi",
version="1.0.0",
description="iMio Luigi ETL",
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
author="iMio",
author_email="[email protected]",
keywords="Python",
url="https://github.com/imio/imio_luigi",
license="GPL version 2",
packages=find_packages(exclude=("docs")),
install_requires=[
"PyMySQL",
"click",
"jsonschema",
"luigi",
"setuptools",
"sqlalchemy",
],
extras_require={
"test": [
"nose",
],
"docs": [
"sphinx",
],
},
entry_points={
'console_scripts': [
"failure_report = imio_luigi.report.failure:main",
"access_report = imio_luigi.report.access:main",
"result = imio_luigi.report.result:main",
],
}
)