-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
44 lines (39 loc) · 1.12 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import io
import os
from setuptools import find_packages, setup
DESCRIPTION = 'ELB python client'
here = os.path.abspath(os.path.dirname(__file__))
# Import the README and use it as the long-description.
# Note: this will only work if 'README.rst' is present in your MANIFEST.in file!
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
# Where the magic happens:
setup(
name='elb.py',
version='0.0.5',
author='ricebook',
description=DESCRIPTION,
long_description=long_description,
author_email='[email protected]',
url='https://github.com/projecteru2/elb',
py_modules=['elb'],
setup_requires=[
'pytest-runner',
],
tests_require=[
'pytest',
],
install_requires=[
'requests',
'setuptools',
],
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: Implementation :: CPython',
],
)