-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (21 loc) · 919 Bytes
/
setup.py
File metadata and controls
29 lines (21 loc) · 919 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
#!/usr/bin/env python
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
REQUIREMENTS_FILE = 'requirements.txt'
setup(name='django-docker',
packages=find_packages(),
package_data={'docker.templates':['*']},
version='0.1',
description='Module to create django docker based on your project',
author='Antonio Sanchez',
author_email='asanchez@plutec.net',
license='Apache Version 2',
url='https://github.com/plutec/django-docker',
download_url='https://github.com/plutec/django-docker/archive/master.zip',
keywords=['docker', 'docker-ce', 'django', 'apache2', 'wsgi', 'gunicorn', 'nginx'],
install_requires=[]
)