-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
48 lines (40 loc) · 1.17 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
# -*- coding: utf-8 -*-
"""
Created on 2020/4/22 10:45 PM
---------
@summary:
---------
@author: Boris
@email: [email protected]
"""
from os.path import dirname, join
from sys import version_info
import setuptools
if version_info < (3, 6, 0):
raise SystemExit("Sorry! feapder_pipelines requires python 3.6.0 or later.")
with open(join(dirname(__file__), "feapder_pipelines/VERSION"), "rb") as f:
version = f.read().decode("ascii").strip()
with open("README.md", "r") as fh:
long_description = fh.read()
packages = setuptools.find_packages()
requires = [
"feapder",
]
extras_require = {"pgsql": ["psycopg2-binary>=2.9.2"]}
setuptools.setup(
name="feapder_pipelines",
version=version,
author="Boris",
license="MIT",
author_email="[email protected]",
python_requires=">=3.6",
description="feapder pipelines extension",
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=requires,
extras_require=extras_require,
url="https://github.com/Boris-code/feapder_pipelines.git",
packages=packages,
include_package_data=True,
classifiers=["Programming Language :: Python :: 3"],
)