-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·38 lines (32 loc) · 847 Bytes
/
setup.py
File metadata and controls
executable file
·38 lines (32 loc) · 847 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/python2
"""
Focus
---------
"""
import os
from setuptools import setup, find_packages, findall
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='Focus',
version='1.0.1',
license='GNU LGPL 2.1',
author='Alexander Pugachev, Alessio Ababilov, Stanislav Pugachev',
author_email='apugachev@griddynamics.com',
description='Web interface to OpenStack',
long_description=__doc__,
packages=find_packages(exclude=['bin', 'tests']),
zip_safe=False,
platforms='any',
scripts=findall("bin"),
package_data = {
"focus": [
"../" + s
for s in
findall("focus/static") +
findall("focus/templates")
],
},
install_requires=read('requirements.txt'),
test_suite='focus.tests'
)