-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
46 lines (40 loc) · 1.37 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
# -*- coding: utf-8 -*-
from __future__ import print_function
import io
import sys
from setuptools import setup
if sys.argv[-1] == 'test':
# python-mock is required to run unit-tests
import unittest
unittest.main('uwsgi_tasks.tests', argv=sys.argv[:-1])
def get_long_description():
with io.open('./README.md', encoding='utf-8') as f:
readme = f.read()
return readme
setup(
name='uwsgi-tasks',
packages=['uwsgi_tasks'],
version='0.7.3',
description='Asynchronous tasks management with UWSGI server',
author='Oleg Churkin',
author_email='bahusoff@gmail.com',
url='https://github.com/Bahus/uwsgi_tasks',
keywords=['asynchronous', 'tasks', 'uwsgi'],
platforms='Platform Independent',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License'
],
long_description=get_long_description(),
long_description_content_type='text/markdown',
requires=['uwsgi', 'six'],
install_requires=['six'],
)