-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (61 loc) · 1.53 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
####################################################################################################
# File: setup.py
# Purpose: Setup of the package.
#
# Author: Luke Poeppel
#
# Location: Frankfurt, DE 2020 / NYC, 2020 / Kent, CT 2020
####################################################################################################
import os
from setuptools import setup, find_packages
with open(os.path.join("decitala", "VERSION")) as version:
__version__ = version.readline()
setup(
name="decitala",
version=__version__,
author="Luke Poeppel",
author_email="[email protected]",
description="Automated ethnological analysis of Olivier Messiaen's music.",
long_description="Automated ethnological analysis of Olivier Messiaen's music.",
long_description_content_type="text/markdown",
url="https://github.com/Luke-Poeppel/decitala",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
include_package_data=True,
package_data={"decitala": ["VERSION"]},
install_requires=[
"click",
"jsonpickle",
"matplotlib",
"more-itertools",
"music21>=6.5.0",
"natsort",
"numpy>=1.16.5",
"pandas",
"progress",
"sqlalchemy",
"scipy",
"tqdm",
"treeplotter==0.4.3",
"unidecode",
"Wand",
],
extras_require={
"dev": [
"flake8",
"pre-commit",
"pytest",
"sphinx_rtd_theme",
]
},
entry_points={
"console_scripts": [
"decitala = decitala.cli:decitala"
]
},
)