-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.py
37 lines (32 loc) · 1 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
#!/usr/bin/env python3
import os
from setuptools import setup, find_packages
VERSION = 'v0.3.0'
PACKAGE_NAME = 'lcr-api'
HERE = os.path.abspath(os.path.dirname(__file__))
DOWNLOAD_URL = ('https://github.com/philipbl/LCR-API/archive/'
'{}.zip'.format(VERSION))
PACKAGES = find_packages(exclude=['tests', 'tests.*'])
REQUIRES = [
'requests>=2,<3',
]
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=PACKAGE_NAME,
version=VERSION,
license='MIT License',
download_url=DOWNLOAD_URL,
author='Philip Lundrigan',
author_email='[email protected]',
description='An API for the LDS churches Leader and Clerk Resources (LCR),',
long_description=long_description,
url='https://github.com/philipbl/LCR-API',
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
test_suite='tests',
)