-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (48 loc) · 1.47 KB
/
setup.py
File metadata and controls
50 lines (48 loc) · 1.47 KB
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
import os
from setuptools import setup
from setuptools import find_packages
VERSION = '0.1'
DESCRIPTION = """Command line tool for artificial data generation,
feature extraction and classification"""
LONG_DESCRIPTION = open('README.rst').read()
setup(
name='pythogram-core',
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=['Natural Language :: English',
'Topic :: Scientific/Engineering',
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
keywords=['python',
'photogrammetry',
'artificial data',
'feature extraction',
'machine learning',
'classification',
],
author='Christodoulos Psaltis',
author_email='cpsaltis@unweb.me',
url='http://github.com/photogrammetry/pythogram-core',
license='MIT License',
packages=find_packages('src'),
package_dir={'': 'src'},
zip_safe=False,
install_requires=[
'setuptools',
'numpy',
'scipy',
'pillow',
'scikit-image',
'scikit-learn',
],
entry_points={
'console_scripts': [
'gram = gramcore.scripts.gram:gram',
],
},
)