-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.02 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
import setuptools
from theoryofcolors import __version__
print(setuptools.find_packages())
with open("README.md", "r") as file:
long_description = file.read()
with open("requirements.txt") as file:
required = file.read().splitlines()
setuptools.setup(
name="theoryofcolors",
version=__version__,
author="Philipp J. Roesch",
author_email="[email protected]",
description="Theory Of Colors",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/phiyodr/theoryofcolors",
classifiers=[
"Programming Language :: Python :: 3",
],
packages=setuptools.find_packages(),
python_requires='>=3.6',
package_data={
# If any package contains *.txt or *.rst files, include them:
"": ["*.txt", "*.csv", "*.json"]},
install_requires=[
"sentence-transformers",
"scikit-learn",
"pandas",
"numpy",
"string-color",
"matplotlib"
]
)