-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (46 loc) · 2 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python
# coding:utf-8
# | |
# --+----------------------------------------------------------+--
# | Code by : yasserbdj96 |
# | Email : [email protected] |
# | Github : https://github.com/yasserbdj96 |
# | BTC : bc1q2dks8w8uurca5xmfwv4jwl7upehyjjakr3xga9 |
# --+----------------------------------------------------------+--
# | all posts #yasserbdj96 ,all views my own. |
# --+----------------------------------------------------------+--
# | |
#START{
from setuptools import setup,find_packages
setup(
name="asciitext",
version="0.0.5",
author="YasserBDJ96",
author_email="[email protected]",
description='''Text to ASCII Art Generator.''',
long_description_content_type="text/markdown",
long_description=open('README.md','r').read(),
license='''MIT License''',
packages=find_packages(),
project_urls={
'Source Code': "https://github.com/yasserbdj96/asciitext",
'Author WebSite': "https://yasserbdj96.github.io/",
'Instagram': "https://www.instagram.com/yasserbdj96/",
},
install_requires=["hexor","requests"],
keywords=['yasserbdj96', 'python', 'ascii', 'texts', 'colors.', 'hex','background', 'rgb'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
'Topic :: Communications :: Email'
],
python_requires=">=3.x.x"
)
#}END.