-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (29 loc) · 979 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
#! /usr/bin/env python
import os
import sys
import versioneer
from setuptools import find_packages, setup
packages = find_packages()
entry_points = {"pymt.plugins": ["Rafem=pymt_rafem.bmi:Rafem"]}
setup(
name="pymt_rafem",
author="Eric Hutton",
description="PyMT plugin rafem",
classifiers=[
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Physics",
],
version=versioneer.get_version(),
long_description=open("README.rst").read(),
install_requires=["rafem"],
packages=packages,
cmdclass=versioneer.get_cmdclass(),
entry_points=entry_points,
include_package_data=True,
)