-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (34 loc) · 1.54 KB
/
setup.py
File metadata and controls
36 lines (34 loc) · 1.54 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
#!/usr/bin/env python3
import os
try:
from setuptools import setup # type: ignore
except ImportError:
from distutils.core import setup
pwd = os.path.abspath(os.path.dirname(__file__))
setup(
name = "python-feclient",
version = "0.2.0",
description = "Client for Fusion Explorer",
keywords = "explorer client fusion solutions fusionsolutions fusionexplorer",
author = "Andor `iFA` Rajci - Fusions Solutions KFT",
author_email = "ifa@fusionsolutions.io",
url = "https://github.com/FusionSolutions/python-feclient",
license = "GPL-3",
packages = ["feClient"],
long_description = open(os.path.join(pwd, "README.md")).read(),
long_description_content_type = "text/markdown",
zip_safe = False,
scripts = ["feClient/fexplorer-cli"],
python_requires = ">=3.8.0",
install_requires = ["python-fsrpcclient~=0.5.0"],
test_suite = "feClient.test",
package_data = { "":["py.typed"] },
classifiers = [ # https://pypi.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
],
)