forked from lmas/opensimplex
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (29 loc) · 1.14 KB
/
setup.py
File metadata and controls
34 lines (29 loc) · 1.14 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
from setuptools import setup, find_packages
from opensimplex import __version__
setup(
name='opensimplex',
version=__version__,
description='OpenSimplex n-dimensional gradient noise function.',
long_description=open('README.rst').read(),
keywords='opensimplex simplex noise 2D 3D 4D',
url='https://github.com/lmas/opensimplex',
download_url='https://github.com/lmas/opensimplex/releases',
author='A. Svensson',
author_email='lmasvensson@gmail.com',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[ # See: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Mathematics',
],
)