-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (62 loc) · 2.27 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
64
65
66
67
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) 2019 Adrian Englhardt <[email protected]>
# Licensed under the MIT License - https://opensource.org/licenses/MIT
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
setup(
name='scaf',
version='1.0.0',
description='Semantic Change Analysis with Word Frequencies',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Text Processing :: Linguistic',
],
keywords=['computational linguistics', 'semantic change analysis', 'change detection', 'word embeddings'],
url='https://github.com/englhardt/scaf',
license='MIT',
author='Adrian Englhardt',
author_email='[email protected]',
packages=find_packages(exclude='scaf.tests'),
install_requires=[
'numpy >= 1.13.1',
'changepoint >= 0.1.1',
'gensim == 2.3.0',
'google-compute-engine >= 2.8.13',
'scikit-learn >= 0.19.0',
'future >= 0.16.0',
'scipy >= 0.19.1',
'pandas >= 0.20.3',
'enum-compat >= 0.0.2'
],
dependency_links=[
"git+https://github.com/englhardt/changepoint.git#egg=changepoint-0.1.1"
],
test_suite='nose.collector',
tests_require=[
'nose >= 1.3.7',
'tox >= 2.7.0'
],
entry_points={
'console_scripts': ['scaf_emb_train=scaf.jobs.training:main',
'scaf_emb_eval=scaf.jobs.embedding_evaluation:main',
'scaf_build_ts=scaf.jobs.build_timeseries:main',
'scaf_prepare_store=scaf.jobs.prepare_store:main',
'scaf_change_detection=scaf.jobs.change_detection:main']
},
include_package_data=True,
zip_safe=False
)