forked from iUssel/MiningPersonalityInGerman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (43 loc) · 1.44 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setuptools.setup(
name="miping",
version="0.2.0",
author="Henning Usselmann",
author_email="[email protected]",
description=(
"MiningPersonalityInGerman enables users to train and apply " +
"machine learning models on tweets to predict a user's " +
"Big 5 personality."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/iUssel/MiningPersonalityInGerman",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: Unix",
],
python_requires='>=3.6',
install_requires=requirements,
setup_requires=['flake8'],
package_data={
'miping': [
'.env.example',
'trainedModels/*.ONNX',
'webapp/webfiles/*',
'webapp/webfiles/sites-available/*',
'webapp/webfiles/www/*',
'webapp/webfiles/www/js/*',
'webapp/webfiles/www/images/*',
'webapp/webfiles/www/html/*',
'webapp/webfiles/www/downloads/*',
'webapp/webfiles/www/css/*',
]
},
include_package_data=True
)