-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 860 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 860 Bytes
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
###
#
# @Name : Setup.py
# @Version : 1.0
# @Programmer : Max
# @Date : 2019-03-31
# @Released under : https://github.com/BaseMax/ColorConvertPy/blob/master/LICENSE
# @Repository : https://github.com/BaseMax/ColorConvertPy
#
###
import setuptools
with open("README.md", "r") as fh:
Description = fh.read()
setuptools.setup(
name="ColorConvert",
version="1.0",
scripts=["ColorConvert.py"],
url="https://github.com/BaseMax/ColorConvertPy",
packages=setuptools.find_packages(),
author="Max Base",
author_email="MaxBaseCode@Gmail.Com",
description="Tiny library to convert various colored units (rgb, hex).",
long_description=Description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 2",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)