-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 809 Bytes
/
setup.py
File metadata and controls
22 lines (21 loc) · 809 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup
setup(
name='cpex',
version='0.1',
author='C. Simpson',
author_email='c.a.simpson01@gmail.com',
packages=['cpex'],
include_package_data=True,
url='https://github.com/casimp/cpex',
download_url = 'https://github.com/casimp/cpex/tarball/v0.1',
license='LICENSE.txt',
description='Extraction and manipulation of crystal plasticity data from Abaqus ODB files.',
keywords = ['CP', 'crystal plasticity', 'diffraction', 'strain'],
# long_description=open('description').read(),
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows"]
)