forked from ocf/ocfweb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 763 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
from setuptools import find_packages
from setuptools import setup
try:
with open('.version') as f:
VERSION = f.readline().strip()
except IOError:
VERSION = 'unknown'
setup(
name='ocfweb',
version=VERSION,
packages=find_packages(exclude=['debian', 'virtualenv_run']),
include_package_data=True,
url='https://www.ocf.berkeley.edu/',
author='Open Computing Facility',
author_email='[email protected]',
install_requires=[
'cachetools',
'django>=1.8,<1.8.999',
'django-ipware',
'gunicorn',
'libsass',
'lxml',
'mistune',
'ocflib',
'pygments',
'python-dateutil',
],
sass_manifests={
'ocfweb': ('static/scss',),
},
)