-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (27 loc) · 885 Bytes
/
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
import setuptools
with open('requirements.txt') as f:
requires = [line.strip() for line in f.readlines()]
setuptools.setup(
name="pubsub",
version="0.1.0",
url="https://github.com/mttr/pubsub",
author="Matt Rasmus",
author_email="mattr@zzntd.com",
description="A simple PubSub server implementation in Python.",
long_description=open('README.rst').read(),
packages=setuptools.find_packages(),
install_requires=requires,
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
entry_points={
'console_scripts': [
'pubsubserve = pubsub.net:main',
]
}
)