forked from juju-solutions/jujubigdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 982 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
34
35
36
37
38
39
40
from setuptools import setup
import os
version_file = os.path.abspath(os.path.join(os.path.dirname(__file__),
'VERSION'))
with open(version_file) as v:
VERSION = v.read().strip()
SETUP = {
'name': "jujubigdata",
'version': VERSION,
'author': "Ubuntu Developers",
'author_email': "[email protected]",
'url': "https://github.com/juju-solutions/jujubigdata",
'install_requires': [
"six",
"pyaml",
"path.py>=7.0",
"jujuresources>=0.2.5",
],
'packages': [
"jujubigdata",
],
'scripts': [
],
'license': "Apache License v2.0",
'long_description': open('README.rst').read(),
'description': 'Helpers for Juju Charm development for Big Data',
}
try:
from sphinx_pypi_upload import UploadDoc
SETUP['cmdclass'] = {'upload_sphinx': UploadDoc}
except ImportError:
pass
if __name__ == '__main__':
setup(**SETUP)