-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
51 lines (45 loc) · 1.57 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
import os
from setuptools import find_packages, setup
__author__ = "Giacomo Berardi <giacbrd.com>"
def readfile(fname):
path = os.path.join(os.path.dirname(__file__), fname)
return open(path).read()
setup(
name="SmartPipeline",
version="0.7.3",
description="A framework for fast developing scalable data pipelines following a simple design pattern",
long_description=readfile("README.rst"),
long_description_content_type="text/x-rst",
classifiers=[
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
],
url="https://github.com/giacbrd/SmartPipeline",
project_urls={
"Documentation": "https://smartpipeline.readthedocs.io",
"Source": "https://github.com/giacbrd/SmartPipeline",
},
keywords=[
"data pipeline",
"task queue",
"data science",
"machine learning",
"design pattern",
],
author="Giacomo Berardi",
author_email="[email protected]",
packages=find_packages(exclude=["tests"]),
package_data={
"smartpipeline": ["py.typed"],
},
tests_require=["pytest", "coverage"],
python_requires=">=3.9",
)