-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
32 lines (29 loc) · 1.08 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import async_pubsub
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities',
]
install_requires = open('requirements.txt', 'rb').read().strip().split()
setup(
name = 'async_pubsub',
version = async_pubsub.__version__,
description = async_pubsub.__description__,
long_description = open('README.md').read().strip(),
author = async_pubsub.__author__,
author_email = async_pubsub.__author_email__,
url = async_pubsub.__homepage__,
license = async_pubsub.__license__,
packages = find_packages(),
install_requires = install_requires,
classifiers = classifiers
)