-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
66 lines (60 loc) · 1.7 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import os.path
from setuptools import setup, find_packages
data = {}
fname = os.path.join('vixen', '__init__.py')
exec(compile(open(fname).read(), fname, 'exec'), data)
classes = """
Development Status :: 5 - Production/Stable
Environment :: Web Environment
Intended Audience :: Developers
Intended Audience :: Education
Intended Audience :: End Users/Desktop
Intended Audience :: Science/Research
License :: OSI Approved :: BSD License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Topic :: Scientific/Engineering :: Information Analysis
Topic :: Utilities
"""
classifiers = [x.strip() for x in classes.splitlines() if x]
requires = [
'traits',
'jigna',
'tornado<5.0',
'json_tricks>=3.0',
'whoosh',
'backports.csv'
]
tests_require = [
'mock',
'pytest'
]
setup(
name='vixen',
version=data.get('__version__'),
author='Prabhu Ramachandran and Kadambari Devarajan',
author_email='[email protected]',
description='View eXtract and aNnotate media',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/vixen-project/vixen',
classifiers=classifiers,
install_requires=requires,
tests_require=tests_require,
python_requires='<3.7',
packages=find_packages(),
package_dir={'vixen': 'vixen'},
package_data={
'': ['*.html', '*.css', '*.gif', '*.js']
},
include_package_data=True,
entry_points="""
[console_scripts]
vixen = vixen.cli:main
"""
)