-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 771 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
setup(
name='odin-nlp',
description='Easy to use NLP framework will nocode workflow',
version='0.1.0',
author='Vikhrev Evgeny',
author_email='e.vikhrev@phystech.edu',
license='MIT',
platforms='any',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Text Processing ',
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
packages=['odin_nlp'],
entry_points={
'console_scripts': [
'odin = odin_nlp.cli:run'
],
},
)