-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·31 lines (26 loc) · 837 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
# -*- coding: utf-8 -*-
"""
Created on Thu May 7 13:05:04 2020
@author: augustinjose
"""
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="silver-AugustinJose1221", # Replace with your own username
version="1.0.1",
author="Augustin Jose",
author_email="[email protected]",
description=" Silver is a customizable python based shell prompt",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AugustinJose1221/silver",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GPL-3.0 License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
)