-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·36 lines (31 loc) · 1.04 KB
/
setup.py
File metadata and controls
executable file
·36 lines (31 loc) · 1.04 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from os.path import join, dirname
import threebot_repeat as app
def long_description():
try:
return open(join(dirname(__file__), 'README.md')).read()
except IOError:
return "LONG_DESCRIPTION Error"
setup(
name='threebot-repeat',
version=app.__version__,
description='Add repetitive Task management to you 3bot',
long_description=long_description(),
author='arteria GmbH',
author_email='admin@arteria.ch',
packages=['threebot_repeat'],
install_requires=open('requirements.txt').read().split('\n'),
include_package_data=True,
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Framework :: Django',
'License :: OSI Approved :: BSD License',
'Development Status :: 4 - Beta',
]
)