-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (29 loc) · 989 Bytes
/
setup.py
File metadata and controls
35 lines (29 loc) · 989 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
26
27
28
29
30
31
32
33
34
35
"""Module for setting up open publishing library python object."""
from setuptools import setup, find_packages
import os
REQUIRES = [
'jsonschema',
'PyYAML',
'requests'
]
VERSION = os.getenv("RELEASE_VERSION", "0.0.1")
setup(
name='open_publishing',
description='API Wrapper for Open Publishing API',
version=VERSION,
download_url='https://github.com/open-publishing/open-publishing-api/archive/'+VERSION+'.zip',
url='https://api.openpublishing.com/',
author='Open Publishing GmbH',
author_email='info@openpublishing.com',
license='Open Publishing License',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
packages=find_packages(),
install_requires=REQUIRES,
keywords='publishing book ebook',
zip_safe=False)