Skip to content

Commit

Permalink
Merge pull request #61 from week-end-manufacture/develop
Browse files Browse the repository at this point in the history
feat: Add ic rsc
  • Loading branch information
JoHyukJun authored Dec 13, 2024
2 parents 5be2b33 + 4c848d5 commit 435d5a7
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 3 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/libj/verlib.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.6"
__version__ = "0.1.7"
6 changes: 4 additions & 2 deletions src/setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
#!/usr/bin/env python
import os

from setuptools import setup, find_packages

def get_version():
version = {}
version_file_path = os.path.join('incoming', 'libj', 'verlib.py')
version_file_path = os.path.join('libj', 'verlib.py')
with open(version_file_path) as fp:
exec(fp.read(), version)
return version['__version__']
Expand All @@ -20,6 +21,7 @@ def get_version():
packages=find_packages(include=['libj', 'libj.*']),
py_modules=['main'],
install_requires = [
'setuptools==69.5.1',
'altgraph==0.17.4',
'Brotli==1.1.0',
'colorlog==6.8.2',
Expand All @@ -37,7 +39,6 @@ def get_version():
'pyppmd==1.1.0',
'pyzstd==0.15.10',
'rarfile==4.2',
'setuptools==69.5.1',
'texttable==1.7.0',
'unrar==0.4',
],
Expand All @@ -46,4 +47,5 @@ def get_version():
'incoming = main:main',
]
},
python_requires='>=3.6',
)

0 comments on commit 435d5a7

Please sign in to comment.