-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (27 loc) · 977 Bytes
/
setup.py
File metadata and controls
31 lines (27 loc) · 977 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
31
from setuptools import setup, find_packages
try:
from flowgrid import __version__
except ImportError:
__version__ = '0.3.8'
if __name__ == '__main__':
with open('README.md', 'r', encoding='utf8') as f:
long_description = f.read()
with open('requirements.txt', 'r') as f:
requirements = f.read().split('\n')
setup(
name='py-flowgrid',
version=__version__,
license='MIT',
description='A simplified, powerful interface for distributed task management in Python, built on Celery.', # noqa E501
long_description=long_description,
long_description_content_type='text/markdown',
author='Fernando Pérez',
author_email='fernaperg@gmail.com',
url='https://github.com/fernaper/flowgrid',
packages=find_packages(),
install_requires=requirements,
entry_points="""
[console_scripts]
flowgrid=flowgrid.cli:main
""",
)