-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
34 lines (32 loc) · 1.06 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
import os
from setuptools import find_packages, setup
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='baroque',
version='0.0.3',
packages=find_packages(),
include_package_data=True,
install_requires=[
'jsonschema==2.6.0,<3.0',
'pytz==2016.10',
'PyYAML==3.12,<4.0',
'requests==2.9.1,<3.0'
],
test_suite='tests',
license='MIT License',
description='Baroque is an event brokering framework with a honey-sweet '
'interface.',
url='https://github.com/baroquehq/baroque',
author='Claudio Sparpaglione',
author_email='csparpa@gmail.com',
classifiers=[
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3 :: Only',
"Natural Language :: English",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Communications"],
)