-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 894 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
from setuptools import setup, find_packages
import openmaps_auth
with open("README.md", "rt") as fh:
long_description = fh.read()
with open("requirements/base.in", "rt") as fh:
install_requires = fh.read().split()
setup(
name="openmaps_auth",
version=openmaps_auth.__version__,
author="Justin Bronn",
author_email="[email protected]",
description="OpenMaps Authentication API",
url="https://github.com/radiant-maxar/openmaps-auth",
install_requires=install_requires,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
],
)