-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
42 lines (39 loc) · 1.03 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
from setuptools import setup
from os import path
from codecs import open
import sys
import os
here = path.abspath(path.dirname(__file__))
with open("README.rst", "r", "utf-8") as f:
readme = f.read()
if sys.argv[-1] == "publish":
os.system("python setup.py sdist upload")
sys.exit()
setup(
name="yandex-money-sdk",
version="0.1.1",
description="SDK yandex money API",
license="MIT",
author="NBCO Yandex.Money LLC",
long_description=readme,
maintainer="Anton Ermak",
maintainer_email="[email protected]",
packages=["yandex_money"],
keywords="sdk yandex money",
package_data={"": ["LICENSE", ]},
install_requires=[
"requests>2.4.0",
"six"
],
test_suite="nose.collector",
tests_require=[
"nose"
],
classifiers=[
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 2.7",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha"
]
)