- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
24 lines (18 loc) · 552 Bytes
/
Copy pathsetup.py
File metadata and controls
24 lines (18 loc) · 552 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
fromsetuptoolsimportsetup, find_packages
fromrainbowimportVERSION
url="https://github.com/jeffkit/rainbow"
long_description="Rainbow Server Reference Implementation. In Python"
setup(name="rainbow-server",
version=VERSION,
description=long_description,
maintainer="jeff kit",
maintainer_email="bbmyth@gmail.com",
url=url,
long_description=long_description,
packages=find_packages('.'),
install_requires=[
'tornado',
'websocket',
]
)