-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (31 loc) · 1.26 KB
/
setup.py
File metadata and controls
36 lines (31 loc) · 1.26 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
35
36
from setuptools import setup, find_packages
from pathlib import Path
def main():
long_description = (Path(__file__).parent / "README.md").read_text()
setup(author="Matheus Vilano",
author_email="",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
description="A simple package that enables coloured output in Python console applications.",
install_requires=[],
keywords="colour color hue console output print terminal text style format effect ANSI escape sequence",
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown", # GitHub-flavored Markdown (GFM)
name="hueprint",
packages=find_packages("src"),
package_dir={"": "src"},
project_urls={
"Author Website": "https://www.matheusvilano.com/",
"Git Repository": "https://github.com/matheusvilano/hueprint",
},
python_requires=">=3.3",
url="https://github.com/matheusvilano/hueprint.git",
version="1.0.0", )
if __name__ == "__main__":
main()