-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (36 loc) · 1.29 KB
/
setup.py
File metadata and controls
40 lines (36 loc) · 1.29 KB
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
from setuptools import find_packages, setup
from setuptools.dist import Distribution
class BinaryDistribution(Distribution):
def has_ext_modules(self):
return True
setup(
name="rayforce_py",
version="0.6.2",
packages=find_packages(),
package_data={
"rayforce": ["*.so", "*.dylib", "*.pyi", "bin/rayforce"],
"rayforce.plugins": ["*.so", "*.dylib"],
},
include_package_data=True,
zip_safe=False,
python_requires=">=3.11",
description="Python bindings for RayforceDB",
long_description=open("README.md").read(), # noqa: SIM115
long_description_content_type="text/markdown",
author="FalsePublicEnemy",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: C",
],
entry_points={"console_scripts": ["rayforce=rayforce.cli:main"]},
distclass=BinaryDistribution,
)