forked from near/nearup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 1.17 KB
/
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="nearup", # Replace with your own username
version="0.1.2",
author="Near Inc",
author_email="[email protected]",
description="Public scripts to launch near blockchain nodes",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/near/nearup",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha", "Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux", "Topic :: System :: Clustering",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking"
],
install_requires=[],
python_requires='>=3.6',
# scripts=['nearup'] # Intentionally no scripts, use as lib only if installed from pypi
)