-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
67 lines (61 loc) · 2.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
from setuptools import setup, find_packages
from os import path
import re
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
requirements = [
'cryptography',
'typing_extensions',
'urllib3',
'dataclasses;python_version<"3.7"', # Add dataclasses backport for Python 3.6
'async-generator;python_version<"3.7"', # For asynccontextmanager in Python 3.6
'aiohttp>=3.6.0', # For async HTTP support
'importlib-metadata;python_version<"3.8"', # For metadata in Python 3.6-3.7
]
test_requirements = [
'pytest>=3',
'pytest-asyncio>=0.10.0',
'mock;python_version<"3.8"', # Only install mock for Python < 3.8
]
def get_version():
with open('growthbook/__init__.py', 'r') as f:
content = f.read()
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", content, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
setup(
name='growthbook',
author="GrowthBook",
author_email='[email protected]',
python_requires='>=3.6',
version=get_version(), # Read version from __init__.py
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
description="Powerful Feature flagging and A/B testing for Python apps",
long_description=long_description,
long_description_content_type='text/markdown',
install_requires=requirements,
license="MIT",
include_package_data=True,
packages=find_packages(include=['growthbook', 'growthbook.*']),
package_data={"growthbook": ["py.typed"]},
keywords='growthbook',
test_suite='tests',
tests_require=test_requirements,
url='https://github.com/growthbook/growthbook-python',
)