forked from 5x12/pipely
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (32 loc) · 1.08 KB
/
setup.py
File metadata and controls
37 lines (32 loc) · 1.08 KB
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
import setuptools
PACKAGE_NAME='pipely'
PACKAGE_AUTHOR='5x12, sergbakh, notrurs'
PACKAGE_AUTHOR_EMAIL='contact@awolf.io'
PACKAGE_DESCR='Pipeline framework.'
try:
from pipely.version import __version__ as version
except ImportError:
exec(f'from {PACKAGE_NAME}.version import __version__ as version')
with open('README.md', 'r') as f: long_description=f.read()
setuptools.setup(
name=PACKAGE_NAME,
version=version,
author=PACKAGE_AUTHOR,
url = 'https://github.com/5x12/pipely',
download_url = 'https://github.com/5x12/pipely/archive/{version}.tar.gz',
description=PACKAGE_DESCR,
long_description=long_description,
license='MIT',
long_description_content_type='text/markdown',
packages=setuptools.find_packages(),
install_requires=['mpire', 'pyyaml'],
keywords = ['PIPELY', 'PIPELINE', 'PIPE'],
python_requires='>=3.8',
include_package_data=True,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
)