Skip to content

Commit b96a458

Browse files
committed
basic config
1 parent fafe488 commit b96a458

8 files changed

+68
-4
lines changed

.gitignore

+3-2
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ cython_debug/
158158
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
159159
# and can be added to the global gitignore or merged into this file. For a more nuclear
160160
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
161-
#.idea/
161+
.idea/
162162

163163
# ---> VisualStudio
164164
## Ignore Visual Studio temporary files, build results, and
@@ -596,7 +596,8 @@ FodyWeavers.xsd
596596
.LSOverride
597597

598598
# Icon must end with two \r
599-
Icon
599+
Icon
600+
600601

601602
# Thumbnails
602603
._*

README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
1-
# Richka
1+
# Richka - Python Async Download Engine
22

3-
Python Async Download Engine

richka/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .config import *

richka/__main__.py

Whitespace-only changes.

richka/__version__.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
__title__ = "richka"
2+
__description__ = "Python Async Download Engine."
3+
__url__ = "https://github.com/ghinknet/richka"
4+
__version__ = '0.0.1'
5+
__author__ = "Ian Xia"
6+
__author_email__ = "xia@ghink.net"
7+
__license__ = "MIT"
8+
__copyright__ = "Copyright Ian Xia"

richka/config.py

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
import richka
2+
3+
__VERSION = ("Alpha", 0, 0, 1)
4+
USER_AGENT = f"Richka{__VERSION[0]}/{__VERSION[1]}.{__VERSION[2]}.{__VERSION[3]}"
5+
HEADERS = {"user-agent": USER_AGENT}
6+
7+
def set_user_agent(user_agent: str) -> None:
8+
richka.USER_AGENT = user_agent
9+
richka.HEADERS["user-agent"] = user_agent
10+
11+
def set_headers(headers: dict) -> None:
12+
for key, value in headers.items():
13+
richka.HEADERS[key.lower()] = value

richka/core.py

Whitespace-only changes.

setup.py

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
import os
2+
import sys
3+
4+
from setuptools import setup, find_packages
5+
6+
about = {}
7+
here = os.path.abspath(os.path.dirname(__file__))
8+
with open(os.path.join(here, "richka", "__version__.py"), "r") as f:
9+
exec(f.read(), about)
10+
11+
with open("README.md", "r") as f:
12+
readme = f.read()
13+
14+
if sys.argv[-1] == "publish":
15+
os.system("python setup.py sdist bdist_wheel")
16+
os.system("twine upload dist/*")
17+
sys.exit()
18+
19+
setup(
20+
name=about["__title__"],
21+
version=about["__version__"],
22+
description=about["__description__"],
23+
packages=find_packages(),
24+
url=about["__url__"],
25+
license=about["__license__"],
26+
author=about["__author__"],
27+
author_email=about["__author_email__"],
28+
long_description_content_type="text/markdown",
29+
long_description=readme,
30+
install_requires=[
31+
],
32+
classifiers=[
33+
'License :: OSI Approved :: MIT License',
34+
'Programming Language :: Python :: 3.9',
35+
'Programming Language :: Python :: 3 :: Only',
36+
],
37+
entry_points={
38+
'console_scripts': ['richka=richka.__main__:main'],
39+
},
40+
package_data={'': ['README.md']},
41+
include_package_data=True,
42+
zip_safe=False)

0 commit comments

Comments
 (0)