forked from vfxetc/vee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (26 loc) · 992 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
33
34
35
36
37
38
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.join(__file__, '..'))
about_path = os.path.join(here, 'vee', '__about__.py')
about_ns = {}
execfile(about_path, {'__file__': about_path}, about_ns)
setup(
name='vee',
version=about_ns['__version__'],
description='Versioned Execution Environment',
url='http://github.com/westernx/vee',
packages=find_packages(exclude=['build*', 'tests*']),
author='Mike Boers',
author_email='[email protected]',
license='BSD-3',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
# scripts=['bin/vee'],
entry_points=open(os.path.join(here, 'vee', 'entry_points.txt')).read(),
)