-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 881 Bytes
/
setup.py
File metadata and controls
30 lines (26 loc) · 881 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
29
30
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
with open("README.rst", "r", encoding='utf-8') as f:
long_description = f.read()
setup(
name="pipeflow-lite",
version="1.0.0",
author="Leon",
author_email="leon.hooo@outlook.com",
description='A flexible and powerful data processing pipeline library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/leonhoo/pipeflow-lite',
install_requires=[],
license='MIT License',
packages=find_packages(),
platforms=["all"],
classifiers=[
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Natural Language :: Chinese (Simplified)',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries'
]
)