-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
48 lines (42 loc) · 1.22 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
import os
from setuptools import setup
def read(*fname: str) -> str:
with open(os.path.join(os.path.dirname(__file__), *fname)) as f:
return f.read()
try:
version = read('VERSION').strip()
except FileNotFoundError:
version = '0'
setup(
name='Kuyruk',
version=version,
author=u'Cenk Altı',
author_email='[email protected]',
keywords='rabbitmq distributed task queue',
url='https://github.com/cenkalti/kuyruk',
packages=['kuyruk'],
include_package_data=True,
install_requires=[
'amqp>=2',
'blinker>=1.3',
'monotonic>=1.6',
],
description='Simple task queue',
long_description=read('README.rst'),
zip_safe=True,
entry_points={
'console_scripts': [
'kuyruk = kuyruk.__main__:main',
],
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.8',
'Topic :: Software Development :: Object Brokering',
'Topic :: System :: Distributed Computing',
],
)