-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (32 loc) · 1.25 KB
/
setup.py
File metadata and controls
34 lines (32 loc) · 1.25 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from monero_scripts._version import __version__
setup(
name="monero_scripts",
version=__version__,
description="Get Monero meta data from Monero source code files.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Norman Moeschter-Schenck",
author_email="<norman.moeschter@gmail.com>",
maintainer="Norman Moeschter-Schenck",
maintainer_email="<norman.moeschter@gmail.com>",
url="https://github.com/monero-ecosystem/monero_scripts",
download_url=f"https://github.com/monero-ecosystem/monero_scripts/archive/{__version__}.tar.gz",
packages=find_packages(exclude=["tests*"]),
# py_modules=[
# "get_monero_hard_fork_info",
# "get_monero_seed_nodes",
# "connect_to_node",
# ],
install_requires=["requests>=2.23.0"],
# extras_require={"test": ["mock", "pytest"]},
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
)