-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 860 Bytes
/
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
from setuptools import setup
version = '0.0.9.1'
setup(
name='create-django-app',
version=version,
packages=['create_django_app'],
url='https://github.com/arsenlosenko/create-django-app',
license='MIT',
author='Arsen Losenko',
author_email='[email protected]',
description='CLI tool to quickstart Django app',
long_description=open('README.rst').read(),
keywords='python django cli CLI',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Utilities',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5'
],
install_requires=[
'virtualenv'
],
entry_points = {
'console_scripts': ['create-django-app=create_django_app.cli:create_project']
}
)