-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
49 lines (44 loc) · 1.69 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.md') as changelog_file:
changelog = changelog_file.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('dev_requirements.txt') as f:
dev_requirements = f.read().splitlines()
setup(
author='Luiz F. Matos',
author_email='[email protected]',
python_requires='>=3.9',
classifiers=[
'Intended Audience :: Science/Research',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Operating System :: MacOS',
'Operating System :: Unix'
],
description='A package to run embedded topic modelling',
install_requires=requirements,
license='MIT license',
long_description=readme + changelog,
long_description_content_type='text/markdown',
include_package_data=True,
keywords='embedded_topic_model',
name='embedded_topic_model',
packages=find_packages(include=['embedded_topic_model', 'embedded_topic_model.models', 'embedded_topic_model.utils']),
setup_requires=dev_requirements,
test_suite='tests',
tests_require=dev_requirements,
url='https://github.com/lffloyd/embedded-topic-model',
version='1.2.1',
zip_safe=False,
)