This repository was archived by the owner on Apr 20, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (38 loc) · 1.44 KB
/
setup.py
File metadata and controls
44 lines (38 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
# -*- coding: utf-8 -*-
import re
import os
import setuptools
if __name__ == "__main__":
MODULE_NAME = 'deltabot'
with open('README.rst') as f:
long_desc = f.read()
setuptools.setup(
name=MODULE_NAME,
description='Deltabot: Extensible bot system for Delta Chat',
setup_requires=['setuptools_scm'],
use_scm_version = True,
long_description=long_desc,
long_description_content_type='text/x-rst',
author='The Deltabot Contributors',
author_email='[email protected], [email protected]',
url='https://github.com/deltachat-bot/deltabot',
package_dir={'': 'src'},
packages = setuptools.find_packages('src'),
classifiers=['Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Topic :: Utilities',
'Programming Language :: Python :: 3'],
entry_points='''
[console_scripts]
deltabot=deltabot.main:main
[pytest11]
deltabot.pytestplugin=deltabot.pytestplugin
''',
python_requires='>=3.5',
install_requires=['deltachat>=1.40.1', 'py'],
include_package_data=True,
zip_safe=False,
)