forked from karl-run/haikubot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (22 loc) · 747 Bytes
/
Copy pathsetup.py
File metadata and controls
25 lines (22 loc) · 747 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
config = {
"name": "Haikubot-mini",
"version": "1.0",
"description": "A simple interface for storing and parsing haikus.",
"author": "Karl J. Overå, Sindre Rannem Bilden",
"author_email": "karl@karl.run, sindrebilden@gmail.com",
"license": "LICENSE.md",
"url": "https://github.com/sindrebilden/haikubot",
"download_url": "https://github.com/sindrebilden/haikubot/",
"install_requires": [
"python-dateutil==2.8.1",
"matplotlib==3.2.2",
"colorharmonies==1.0.5",
"SQLAlchemy==1.3.17",
"wordcloud==1.7.0",
],
"packages": find_packages(exclude=["tests"]),
}
setup(**config)