-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 890 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 find_packages, setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='site-configuration-client',
version='0.2.4',
description='Python client library for Site Configuration API',
long_description=read('README.rst'),
classifiers=[
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
],
packages=find_packages(),
install_requires=[
"requests>=2.20.0",
],
entry_points={
'lms.djangoapp': [
'site_config_client = site_config_client.apps:SiteConfigApp',
],
'cms.djangoapp': [
'site_config_client = site_config_client.apps:SiteConfigApp',
],
},
url="https://github.com/appsembler/site-configuration-client"
)