-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (30 loc) · 967 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
from setuptools import setup
setup(
name = 'freshy-server',
packages = ['freshy-server'],
version = '0.2.2',
description = 'Page refresh tool for web developers.',
author = 'Lucas Chi',
author_email = '[email protected]',
url = 'https://github.com/lchi/freshy-server',
classifiers = [
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Browsers',
'Topic :: Software Development',
],
requires = [
'twisted',
'autobahn',
'watchdog',
],
scripts=['bin/freshy-server'],
long_description = """\
Please see https://github.com/lchi/freshy-server, or the README for more information.
""",
)