-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·34 lines (29 loc) · 755 Bytes
/
setup.py
File metadata and controls
executable file
·34 lines (29 loc) · 755 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
26
27
28
29
30
31
32
33
34
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "kyffin",
version = "0.1",
author = "Alexander D Brown",
author_email = "alex@alexanderdbrown.com",
url = "",
description = "Kyffin Williams: Digital Analysis of Paintings",
long_description = open('README.md').read(),
# Packages
packages = find_packages(),
include_package_data = True,
zip_safe = False,
entry_points = {
'console_scripts': [
'kyffin = kyffin.cli:main',
'kyffin-www = kyffin.www:main'
]
},
# Requirements
install_requires = [
'matplotlib',
'scipy',
'liac-arff',
'flask',
],
test_suite = "kyffin.tests",
)