forked from cedadev/jasmin-services
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·44 lines (38 loc) · 1.32 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
44
#!/usr/bin/env python3
import os, re
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-services',
setup_requires = ['setuptools_scm'],
use_scm_version = True,
description = 'Django application for managing services, roles and access',
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-services',
keywords = 'web django jasmin services role based access control rbac',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = [
'django',
'jasmin-ldap-django',
'jasmin-metadata',
'jasmin-notifications',
'django-bootstrap3',
'django-markdown-deux',
'python-dateutil',
'django-polymorphic',
'requests',
],
)