-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (54 loc) · 1.86 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import setup, find_packages, Command
import os
class CleanCommand(Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
# Load Requirements
with open('requirements.txt') as f:
requirements = f.readlines()
# Load README
with open('README.md') as readme_file:
readme = readme_file.read()
setup_requirements = []
data_files = ['nlp_libs/configuration/yml_schema.json']
COMMANDS = [
# 'nlp_main = main:main'
]
setup(
author="jeanmerlet, drkostas, LaneMatthewJ",
author_email="[email protected], kgeorgio.vols.utk.edu, [email protected]",
python_requires='>=3.9',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
],
cmdclass={
'clean': CleanCommand,
},
data_files=[('', data_files)],
description="Rinehart Analysis using Word Vectors for NLP (ECE-617) Project 2.",
entry_points={'console_scripts': COMMANDS},
install_requires=requirements,
license="MIT license",
long_description=readme,
include_package_data=True,
keywords='rinehart crime novel analysis word vectors nlp project',
name='rinehartAnalysis_wordVectors',
packages=find_packages(include=['proj1_nlp_libs',
'proj1_nlp_libs.*',
'nlp_libs',
'nlp_libs.*']),
setup_requires=setup_requirements,
url='https://github.com/NLPaladins/rinehartAnalysis_wordVectors',
version='0.1.0',
zip_safe=False,
)