forked from pyxem/orix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (34 loc) · 1.09 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
from setuptools import setup, find_packages
from orix import __name__, __version__, __author__, __author_email__, __description__
setup(
name=__name__,
version=str(__version__),
license="GPLv3",
author=__author__,
author_email=__author_email__,
description=__description__,
long_description=open('README.rst').read(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
packages=find_packages(exclude=['orix/tests']),
install_requires=[
"numpy",
"scipy",
"matplotlib",
"tqdm"
],
package_data={
"": ["LICENSE", "readme.rst"],
"orix": ["*.py"],
},
)