Skip to content
This repository was archived by the owner on Feb 15, 2024. It is now read-only.

Commit af9e55c

Browse files
committed
Some changes in setup
1 parent dd72d02 commit af9e55c

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

setup.py

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,6 @@
33
with 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-
116
setuptools.setup(
127
name='python-aternos',
138
version='0.6',
@@ -18,16 +13,22 @@
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
)

0 commit comments

Comments
 (0)