-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
executable file
·36 lines (31 loc) · 1004 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
36
#!/usr/bin/env python3
"""setup.py"""
import setuptools
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()
setuptools.setup(
name="roboauto",
version="0.3.2",
author="jerryfletcher21",
author_email="jerryfletcher@cock.email",
description="robosats cli",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jerryfletcher21/roboauto",
license="ISC",
packages=["roboauto"],
scripts=["bin/roboauto"],
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Unix Shell",
"Topic :: Software Development",
"Topic :: System :: Shells",
"Topic :: Utilities"
]
)