This repository was archived by the owner on Feb 15, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 33with open ('README.md' , 'rt' ) as readme :
44 long_description = readme .read ()
55
6- with open ('requirements.txt' , 'rt' ) as f :
7- requires = f .readlines ()
8- for i , r in enumerate (requires ):
9- requires [i ] = r .strip ('\r \n ' )
10-
116setuptools .setup (
127 name = 'python-aternos' ,
138 version = '0.6' ,
1813 long_description_content_type = 'text/markdown' ,
1914 url = 'https://github.com/DarkCat09/python-aternos' ,
2015 project_urls = {
21- 'Bug Tracker' : 'https://github.com/DarkCat09/python-aternos/issues' ,
22- 'Documentation' : 'https://github.com/DarkCat09/python-aternos/wiki/Client-(entry-point)' ,
16+ 'Bug Tracker' : 'https://github.com/DarkCat09/python-aternos/issues'
2317 },
2418 classifiers = [
2519 'Development Status :: 4 - Beta' ,
2620 'Programming Language :: Python :: 3' ,
2721 'License :: OSI Approved :: Apache Software License' ,
2822 'Operating System :: OS Independent'
2923 ],
30- install_requires = requires ,
24+ install_requires = [
25+ 'lxml>=4.8.0' ,
26+ 'requests>=2.25.1' ,
27+ 'cloudscraper>=1.2.58' ,
28+ 'js2py>=0.71' ,
29+ 'websockets>=10.1' ,
30+ 'regex>=2022.3.15'
31+ ],
3132 packages = ['python_aternos' ],
3233 python_requires = ">=3.7" ,
3334)
You can’t perform that action at this time.
0 commit comments