This repository was archived by the owner on Nov 7, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (54 loc) · 1.57 KB
/
setup.py
File metadata and controls
60 lines (54 loc) · 1.57 KB
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
"""
Setup file
LabMic UFSJ 2021
Carlos Barbosa
"""
from setuptools import setup
def read_requirements(path_to_requires='requirements.txt'):
"""read requirements."""
with open(path_to_requires) as arq:
return [i.strip() for i in arq]
packages = [
"sara",
"sara.core",
"sara.core.bot_model",
"sara.core.sara_file",
"sara.core.mongo",
"sara.core.network_generators",
"sara.stopwords",
"sara.stopwords.stopwords_txt",
"sara.credentials",
"sara.utils"
]
install_requires = read_requirements()
setup(
name='sara',
packages=packages,
version='0.2.0',
description='Sara framework to analysis online social networks',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
author='Carlos Barbosa',
license='MIT',
install_requires=install_requires,
include_package_data=True,
setup_requires=['pytest-runner'],
tests_require=['pytest==6.2.4'],
test_suite='tests',
entry_points={
'console_scripts': [
'sara=sara.main:main'
]
}
)