-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (36 loc) · 1.18 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
import codecs
from setuptools import setup
def readme():
with codecs.open('README.md') as f:
return f.read()
setup(
name='django_bootstrapper',
version='0.1.3',
description='A simple bootstrapper for django applications',
long_description=readme(),
long_description_content_type="text/markdown",
url='http://github.com/contraslash/django-bootstrapper',
keywords='django bootstrapping tool',
author='contraslash S.A.S.',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
license='MIT',
install_requires=[
'gitpython>=2.1',
'django_crud_generator'
],
packages=['django_bootstrapper'],
scripts=['django_bootstrapper/bin/django-bootstrapper.py'],
zip_safe=False,
include_package_data=True,
project_urls={
'Bug Reports': 'https://github.com/contraslash/django-bootstrapper/issues',
'Source': 'https://github.com/contraslash/django-bootstrapper',
'Contraslash': 'https://contraslash.com/'
},
)