-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
40 lines (38 loc) · 1.54 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
#!/usr/bin/env python
from __future__ import print_function
from setuptools import setup
setup(name="lala",
author="Wieland Hoffmann",
author_email="[email protected]",
description="IRC bot based on the twisted framework",
long_description=open("README.rst").read(),
packages=["lala", "lala.plugins", "twisted.plugins"],
package_dir={"lala": "lala"},
requires=["Twisted"],
python_requires=">=3.6.0",
download_url="https://github.com/mineo/lala/tarball/master",
url="http://github.com/mineo/lala",
license="MIT",
classifiers=["Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Twisted",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6"
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
],
data_files=[("usr/share/doc/lala", ["config.example"])],
install_requires=["Twisted", "appdirs", "six"],
setup_requires=["setuptools_scm"],
use_scm_version={"write_to": "lala/version.py"},
extras_require={
"iw": ["ilmwetter"],
"prometheus": ["prometheus_client"],
"websocket": ["autobahn"]
},
tests_require=["hypothesis"],
test_suite="test",
)