-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (33 loc) · 1.2 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
from setuptools import setup
with open("VERSION", "r") as f:
version = f.readline().strip()
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "rt") as f:
requirements = f.read().splitlines()
setup(name='minibus',
version=version,
description="MiniBus IPC Library",
long_description=long_description,
url="https://github.com/mrdanbrooks/minibus",
author="Dan Brooks",
license="Apache v2.0",
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2.7',
],
keywords='minibus, publish/subscribe, ipc, development',
py_modules=['minibus'],
scripts=['mbtt'],
install_requires=requirements, #['jsonschema','netifaces'],
# These can be installed optionally using
# $ pip install -e .[twisted,crypto]
extras_require={
'twisted': ['Twisted'],
'crypto': ['gnupg'],
}
)