Skip to content

Commit

Permalink
Reqs in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kuk committed Jan 21, 2023
1 parent a0eaa30 commit 518fcbd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
3 changes: 0 additions & 3 deletions requirements/main.txt

This file was deleted.

14 changes: 8 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@
description = file.read()


with open('requirements/main.txt') as file:
requirements = [_.strip() for _ in file]


setup(
name='slovnet',
version='0.5.0',
Expand All @@ -30,6 +26,12 @@
],
keywords='nlp, deeplearning, russian',

packages=find_packages(),
install_requires=requirements
packages=find_packages(
exclude=['tests']
),
install_requires=[
'numpy',
'razdel',
'navec',
]
)

0 comments on commit 518fcbd

Please sign in to comment.