forked from space-wizards/RSI.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (30 loc) · 1015 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name="RSI.py",
version="1.1.6",
description="A library for manipulation of the RSI format used in Space Station 14.",
url="https://github.com/space-wizards/RSI.py",
author="Pieter-Jan Briers",
author_email="[email protected]",
license="MIT",
packages=["rsi"],
python_requires=">=3.5",
install_requires=[
"Pillow"
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development :: Libraries :: Python Modules"
],
project_urls={
"Source": "https://github.com/space-wizards/RSI.py"
},
entry_points={'console_scripts': ['rsi=rsi.__main__:main']},
)