-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
57 lines (46 loc) · 1.33 KB
/
setup.py
File metadata and controls
57 lines (46 loc) · 1.33 KB
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
# -*- coding: utf-8 -*-
"""
Pixela
~~~~~~
Pixela API client for Python.
`Ruby pixela client <https://github.com/sue445/pixela>`_
:copyright: (c) 2018 Shinya Ohyanagi, All rights reserved.
:license: BSD, see LICENSE for more details.
"""
import os
from setuptools import (
find_packages,
setup,
)
from pixela import __version__
requires = ['requests', 'pytz']
app_name = 'pixela'
rst_path = os.path.join(os.path.dirname(__file__), 'README.rst')
description = ''
with open(rst_path) as f:
description = f.read()
setup(
name=app_name,
version=__version__,
author='Shinya Ohyanagi',
author_email='sohyanagi@gmail.com',
url='http://github.com/heavenshell/py-pixela',
description='Pixela API client for Python.',
long_description=description,
license='BSD',
platforms='any',
packages=find_packages(exclude=['tests']),
package_dir={'': '.'},
install_requires=['mock', 'requests', 'pytz'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
tests_require=requires,
test_suite='tests',
)