-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (25 loc) · 772 Bytes
/
setup.py
File metadata and controls
29 lines (25 loc) · 772 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
from setuptools import setup
long_description = """
API Wrapper to access the Open Source License API
The Open Source API can be found at https://api.opensource.org, and
some (very brief!) documentation can be found in the API server documentation
(http://github.com/OpenSourceOrg/api/blob/master/doc/endpoints.md).
"""
setup(
name="opensource",
version="1.0.2",
packages=[
'opensource',
'opensource.licenses',
],
author="Paul Tagliamonte",
author_email="paultag@opensource.org",
long_description=long_description,
description="Query the Open Source License API",
license="MIT",
install_requires=[
"requests",
],
url="http://github.com/OpenSourceOrg/python-opensource",
platforms=['any']
)