-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
66 lines (56 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
# To use a consistent encoding
from codecs import open
from os import path
# https://packaging.python.org/distributing/#packaging-your-project
# https://packaging.python.org/distributing/#uploading-your-project-to-pypi
# https://docs.djangoproject.com/en/1.11/intro/reusable-apps/
# http://peterdowns.com/posts/first-time-with-pypi.html
VERSION = '1.7'
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='django-yadpt-starter',
packages=find_packages(),
include_package_data=True,
version=VERSION,
description=(
'django-yadpt-starter is Yet Another Django Project Template '
'skeleton for Django projects'
),
long_description=long_description,
author='Nuno Khan',
author_email='[email protected]',
url='https://github.com/psychok7/django-yadpt-starter',
download_url=(
'https://github.com/psychok7/django-yadpt-starter/tarball/v' + VERSION
),
keywords=[
'django', 'template', 'project templates', 'python', 'https',
'letsencrypt', 'starter', 'cookiecutter', 'docker', 'docker-compose'
],
scripts=['minimal/django-yadpt-starter.py'],
install_requires=['Django >= 1.8', 'six >= 1.10.0'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
license='MIT',
)