-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (29 loc) · 896 Bytes
/
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
from setuptools import setup
import os
import aja_tools
version_file = open(os.path.join('.', 'VERSION.txt'))
version_number = version_file.read().strip()
version_file.close()
setup(
name = 'aja_tools',
description = 'Wrangle AJA Sputter tool log files easier.',
version = version_number,
author = 'Faustin Carter',
author_email = '[email protected]',
license = 'MIT',
url = 'http://github.com/sebastianbocquet/pygtc',
packages = ['aja_tools'],
long_description = open('readme.rst').read(),
install_requires = [
'numpy',
'matplotlib',
'pandas',
],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Visualization'
]
)