-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (21 loc) · 695 Bytes
/
setup.py
File metadata and controls
24 lines (21 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env python
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
setup(name='Shellac',
version='0.1.0',
description='Shellac Web Accelerator',
author='Kalan MacRow',
author_email='kalanwm@cs.ubc.ca',
license='MIT',
url='https://github.com/kmacrow/Shellac',
download_url='https://github.com/kmacrow/Shellac/releases',
packages=find_packages('src/python'),
package_dir={'shellac': 'src/python/shellac'},
install_requires=['http-parser>=0.8.3', 'pylibmc>=1.2.2'],
entry_points = {
'console_scripts': [
'shellac = shellac.server.Server:main'
]
}
)