-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
71 lines (49 loc) · 1.44 KB
/
setup.py
File metadata and controls
71 lines (49 loc) · 1.44 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
# Author: Will<willji@outlook.com>
# Created on 2018-01-10 12:45:12
import sys
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf8') as f:
long_description = f.read()
import pyops
install_requires = [
'click>=3.3',
'unittest2>=0.5.1'
]
setup(
name='pyops',
version=pyops.__version__,
description='IT maintenance and operation libs in Python.',
long_description=long_description,
url='https://github.com/webji/pyops',
author='Will Ji',
author_email='willji@outlook.com',
license='Apache License, Version 2.0',
classifiers=[
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Environment :: Web Environment',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='maintencance operations it',
packages=find_packages(exclude=['data', 'tests*']),
install_requires=install_requires,
extras_require={},
package_data={
'pyops': [
'logging.conf',
],
},
entry_points={
'console_scripts': [
'pyops=pyops.run:main'
]
},
test_suite='tests.all_suite',
)