-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.32 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : 2018/8/17 下午2:53
# @Author : wudizhangzhi
from codecs import open # To use a consistent encoding
from os import path
from setuptools import find_packages
from setuptools import setup
root_path = path.abspath(path.dirname(__file__))
with open(path.join(root_path, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='taskDispatch',
version='1.0.0',
description='task dispatch',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/wudizhangzhi/django-params-validator',
# Author details
author='wudizhangzhi',
author_email='[email protected]',
# Choose your license
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Topic :: Internet :: WWW/HTTP',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
],
keywords='redis, task',
packages=find_packages(exclude=['tests']),
install_requires=[]
)