-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
37 lines (32 loc) · 972 Bytes
/
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
# coding: utf-8
from setuptools import setup, find_packages
import os
NAME = "devcycle-python-server-sdk"
version_file = open(os.path.join("devcycle_python_sdk", "VERSION.txt"))
VERSION = version_file.read().strip()
# To install the library, run the following
#
# python setup.py install
#
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools
REQUIRES = [line.strip() for line in open("requirements.txt").readlines()]
setup(
name=NAME,
version=VERSION,
description="DevCycle Python SDK",
author_email="",
url="https://github.com/devcycleHQ/python-server-sdk",
keywords=["DevCycle"],
install_requires=REQUIRES,
python_requires=">=3.9",
packages=find_packages(),
package_data={
"": ["VERSION.txt"],
"devcycle_python_sdk": ["py.typed", "bucketing-lib.release.wasm"],
},
include_package_data=True,
long_description="""\
The DevCycle Python SDK used for feature management.
""",
)