-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
46 lines (38 loc) · 1.13 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import os
import re
with open("README.md", "r", encoding="utf8") as fh:
readme = fh.read()
package = "tapi_yandex_metrika"
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, "__init__.py")).read()
return re.search("^__version__ = ['\"]([^'\"]+)['\"]", init_py, re.MULTILINE).group(
1
)
setup(
name="tapi-yandex-metrika",
version=get_version(package),
description="Python client for API Yandex Metrika",
long_description=readme,
long_description_content_type="text/markdown",
author="Pavel Maksimov",
author_email="[email protected]",
url="https://github.com/pavelmaksimov/tapi-yandex-metrika",
packages=[package],
include_package_data=False,
install_requires=["requests", "orjson", "tapi-wrapper2>=0.1.2,<1.0"],
license="MIT",
zip_safe=False,
keywords="tapi,wrapper,yandex,metrika,api",
test_suite="tests",
package_data={
package: ["*"],
},
)