-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
41 lines (33 loc) · 1.14 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
from setuptools import setup, find_packages
import pygyro
# ==============================================================================
NAME = 'pygyro'
VERSION = pygyro.__version__
AUTHOR = 'Emily Bourne, Yaman Güçlü'
EMAIL = '[email protected]'
URL = 'https://github.com/pyccel/pygyro'
DESCR = 'Python library for parallel gyro-kinetic simulations'
KEYWORDS = ['Semi-Lagrangian', 'MPI', 'Gyrokinetic']
#LICENSE = 'LICENSE.txt'
# ==============================================================================
def setup_package():
setup(
name = NAME,
version = VERSION,
author = AUTHOR,
author_email = EMAIL,
description = DESCR,
long_description = open('README').read(),
# license = LICENSE,
keywords = KEYWORDS,
url = URL,
packages = find_packages(),
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
# "License :: OSI Approved :: BSD License",
],
)
# ..............................................................................
if __name__ == '__main__':
setup_package()