forked from OlafHaag/VectorFields
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (41 loc) · 1.8 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
#!/usr/bin/env python
""" Installation script for vectorfields package. """
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
from os import path
from io import open
from src.vectorfields import __version__ as version
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='vectorfields',
version=version,
description='Module for creating vector fields for use in a game engine, e.g. Unreal Engine 4 or Unity 3D.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Olaf Haag',
author_email='[email protected]',
url='https://github.com/OlafHaag/VectorFields',
classifiers=['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Environment :: Console',
'Development Status :: 3 - Alpha',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Topic :: Games/Entertainment',
],
keywords='vector fields FGA vf flowmap unity unreal 3d game engine VFX',
packages=find_packages(where="src"),
package_dir={"": "src"},
python_requires='>=2.7',
install_requires=['numpy',
'matplotlib'],
project_urls={'Bug Reports': 'https://github.com/OlafHaag/VectorFields/issues',
'Source': 'https://github.com/OlafHaag/VectorFields/',
},
)