-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (27 loc) · 1.01 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
#!/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 = 'fwtheme-django-ceda-serv',
version = '1.6.0',
description = 'Framework-level theme for Django customised for CEDA Services app using bootstrap 4',
long_description = README,
classifiers = [
"Programming Language :: Python",
"Framework :: Django",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
],
author = 'Matt Pritchard',
author_email = '[email protected]',
url = 'https://github.com/cedadev/fwtheme-django-ceda-serv',
keywords = 'web django theme bootstrap',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
install_requires = [],
)