-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
44 lines (38 loc) · 1.75 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
from setuptools import setup
def parse_requirements(filename):
lines = (line.strip() for line in open(filename))
return [line for line in lines if line]
configcatclient_version = '10.0.0'
requirements = parse_requirements('requirements.txt')
setup(
name='configcat-client',
version=configcatclient_version,
packages=['configcatclient'],
url='https://github.com/configcat/python-sdk',
license='MIT',
author='ConfigCat',
author_email='[email protected]',
description='ConfigCat SDK for Python. https://configcat.com',
long_description='Feature Flags created by developers for developers with <3. ConfigCat lets you manage '
'feature flags across frontend, backend, mobile, and desktop apps without (re)deploying code. '
'% rollouts, user targeting, segmentation. Feature toggle SDKs for all main languages. '
'Alternative to LaunchDarkly. '
'Host yourself, or use the hosted management app at https://configcat.com.',
install_requires=requirements,
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'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',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
],
)