-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (51 loc) · 1.38 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#!/usr/bin/python"""
"""
Cosmic
------
Cosmic is a tiny web API framework based on
`Teleport <http://teleport-json.org/>`_.
Links
`````
* `Website <http://www.cosmic-api.com/>`_
* `Documentation <http://www.cosmic-api.com/docs/cosmic/python/latest/>`_
* `Development version <https://github.com/cosmic-api/cosmic.py>`_
"""
from setuptools import setup
import os
root = os.path.abspath(os.path.dirname(__file__))
with open("{}/LICENSE".format(root)) as license_file:
license_text = license_file.read()
with open("{}/CHANGES.rst".format(root)) as changes_file:
changelog_text = changes_file.read()
long_description = """
{}
License
```````
{}
Changelog
`````````
{}
""".format(__doc__, license_text, changelog_text)
setup(
name='cosmic',
version="0.5.6",
url='http://www.cosmic-api.com/docs/cosmic/python/',
packages=['cosmic'],
description='A tiny web API framework based on Teleport',
license='MIT',
author='8313547 Canada Inc.',
author_email='[email protected]',
long_description=long_description,
install_requires=[
'Werkzeug>=0.9.1',
'requests>=2.2.0',
'isodate>=0.5.1',
],
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)