-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (30 loc) · 1.06 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
from setuptools import setup, find_packages
with open("README.md") as f:
README = f.read()
with open("requirements.txt") as f:
REQUIREMENTS = f.readlines()
setup(
name="common",
version="0.1.0",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Topic :: Multimedia",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Software Development :: Libraries",
],
description="Tutorial webbook to get started with the computational analysis of Indian Art Music",
long_description=README,
long_description_content_type="text/markdown",
author_email=["thomas.nuttall@upf.edu", "genis.plaja@upf.edu"],
license="GNU GENERAL PUBLIC LICENSE",
packages=find_packages(),
keywords=["indian art music", "computational musicology"],
install_requires=[
REQUIREMENTS
],
)