-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 710 Bytes
/
setup.py
File metadata and controls
25 lines (22 loc) · 710 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
from setuptools import setup
description = (
'Django Github Storage Package '
)
setup(
name='django-git-storages',
version='0.0.6',
author='Uche David',
author_email='debugtitan.hub@outlook.com',
description=description,
long_description="Django package that facilitates integration with Github as it's storage provider",
long_description_content_type='text/markdown',
license='MIT',
url='https://github.com/debugtitan/django-git-storage',
keywords=['django git storage','django github storage'],
packages=['git_storage'],
include_package_data=True,
classifiers = [
"Framework :: Django",
"Programming Language :: Python :: 3",
]
)