-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (52 loc) · 1.43 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
49
50
51
52
53
54
55
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from os import path as os_path
from setuptools import setup, find_packages
# Package meta-data.
NAME = 'drummer'
DESCRIPTION = 'A multi-process, multi-tasking job scheduler.'
URL = 'https://github.com/acapitanelli/drummer'
AUTHOR = 'Andrea Capitanelli'
EMAIL = '[email protected]'
VERSION = '1.3.1'
# short/long description
here = os_path.abspath(os_path.dirname(__file__))
try:
with open(os_path.join(here, 'README.md'), 'r', encoding='utf-8') as file:
long_desc = '\n' + file.read()
except FileNotFoundError:
long_desc = DESCRIPTION
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
maintainer=AUTHOR,
maintainer_email=EMAIL,
url=URL,
python_requires='>=3.6.0',
packages=find_packages(),
install_requires=[
'clips',
'croniter',
'inquirer',
'PTable',
'PyYAML',
'SQLAlchemy'
],
long_description=long_desc,
long_description_content_type='text/markdown',
keywords='scheduler extender multi-process multi-tasking',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: System'
],
scripts=[
os_path.join(here, 'bin/drummer-admin')
]
)