-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (31 loc) · 1.33 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
from setuptools import setup, find_packages
module_dir = os.path.dirname(__file__)
with codecs.open(os.path.join(module_dir, "README.rst"), encoding="utf8") as f:
long_description = f.read()
setup(name="yaaudience",
version="1.0.0",
packages=find_packages(exclude=("tests",)),
description="Yandex.Audience REST API client library",
long_description="Yandex.Audience REST API client library",
author="Sergey Sheremeta",
author_email="[email protected]",
license="GPLv3",
python_requires=">=3",
install_requires=["requests"],
url="https://github.com/ssheremeta/yandex-audience-api",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"],
keywords="yandex yandex.audience rest python")