-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 1023 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
30
31
32
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
VERSION = open(os.path.join(here, 'VERSION')).read()
README = open(os.path.join(here, 'README.md')).read()
setup(
name='django-helper',
version=VERSION,
package_dir={'helper': 'helper'},
include_package_data=True,
packages=find_packages(),
description='Django Helper module for standardizing microservices',
long_description=README,
long_description_content_type="text/markdown",
url='https://github.com/growsimplee/django-helper',
install_requires=[
"boto3>=1.16.35",
"Django>=3.1",
"djangorestframework>=3.12"
],
classifiers=[
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: Django'
]
)