-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
40 lines (39 loc) · 1.29 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
from setuptools import setup, find_packages
import versioneer
setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
name="Mantissa",
maintainer="Tristan Seligmann",
maintainer_email="[email protected]",
url="https://github.com/twisted/mantissa",
license="MIT",
platforms=["any"],
description="A multiprotocol application deployment platform",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: No Input/Output (Daemon)",
"Framework :: Twisted",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: JavaScript",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Terminals",
],
install_requires=[
"Twisted[tls,conch]>=16.6.0",
"PyOpenSSL>=0.13",
"Axiom>=0.7.0",
"Vertex>=0.2.0",
"PyTZ",
"Pillow",
"cssutils>=0.9.5",
"Nevow>=0.9.5",
"cryptography>=1.0",
],
packages=find_packages() + ['axiom.plugins', 'nevow.plugins'],
include_package_data=True,
)