-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
61 lines (59 loc) · 2.75 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/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 ashar.asharversion import __version__
from setuptools import setup,find_packages
setup(
name="ashar",
version=__version__,
author="yasserbdj96",
author_email="[email protected]",
description='''ashar - free & open source project for text encryption with password protection.''',
long_description_content_type="text/markdown",
long_description=open('README.md','r', encoding="utf8").read(),
license='''Apache Software License''',
packages=find_packages(),
project_urls={
'Source': "https://github.com/yasserbdj96/ashar",
'WebSite': "https://yasserbdj96.github.io/ashar",
#'Documentation': "https://yasserbdj96.github.io/ashar",
'Chat': "https://gitter.im/yasserbdj96/ashar",
'Author WebSite':"https://yasserbdj96.github.io/"
},
install_requires=[],
keywords=["python","encoding","protection","encryption","text","decoder","decoding","password","python3","coding","encode","decryption","yasserbdj96"],
classifiers=[
"Environment :: Web Environment",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP"
],
python_requires=">=3.x.x"
)
#}END.