-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1017 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
"""Setup."""
from setuptools import find_packages, setup
from bizlogic import __version__
def load_long_description(filename: str) -> str:
"""Convert README.md to a string."""
with open(filename, "r", encoding="utf-8") as f:
return f.read()
setup(
name="bizlogic",
version=__version__,
author="Nathaniel Schultz",
author_email="nate@nanoswap.finance",
description="NanoSwap Business Logic",
long_description=load_long_description("README.md"),
long_description_content_type="text/markdown",
url="https://github.com/nanoswap/bizlogic",
project_urls={
"Bug Tracker": "https://github.com/nanoswap/bizlogic/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: The Unlicense (Unlicense)"
],
python_requires=">=3.11",
package_dir={'bizlogic': "bizlogic"},
package_data={
"bizlogic.protoc": ["*.proto"],
},
packages=find_packages(exclude=['tests', 'tests.*']),
)