-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
43 lines (39 loc) · 1.26 KB
/
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
41
42
43
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read()
if __name__ == "__main__":
setup(
name = 'jasmin-cloud',
setup_requires = ['setuptools_scm'],
use_scm_version = True,
description = 'API for management of tenancies in the JASMIN Cloud.',
long_description = README,
classifiers = [
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author = 'Matt Pryor',
author_email = '[email protected]',
url = 'https://github.com/cedadev/jasmin-cloud',
keywords = 'web django jasmin cloud api',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = [
'docutils',
'python-dateutil',
'django',
'djangorestframework',
'django-settings-object',
'jasmin-ldap',
'pyyaml',
'voluptuous',
'requests',
'rackit',
],
)