generated from CFEL-CMI/CMI-Python-project-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (35 loc) · 1.31 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
#!/usr/bin/env python
# -*- coding: utf-8; fill-column: 120 -*-
#
# Copyright (C) 2021 Emil Zak <emil.zak@cfel.de>
from setuptools import setup
copyright = 'Copyright (C) 2021 Emil Zak <emil.zak@cfel.de>'
name = "PECD"
version = "0.9.dev0"
release = version
long_description = """
Original author: Emil Zak <emil.zak@cfel.de>
Current maintainer: Emil Zak <emil.zak@cfel.de>
"""
setup(name=name,
python_requires = '>=3.6',
author = "Emil Zak, Andrey Yachmenev, Jochen Küpper",
author_email = "emil.zak@cfel.de",
maintainer = "Emil Zak",
maintainer_email = "emil.zak@cfel.de",
url = "https://github.com/CFEL-CMI/PECD",
description = "Quantum-mechanical calculations of photo-electron circular dichroism",
version = version,
long_description = long_description,
license = "GPL",
packages = ['cmitemplate'],
scripts = ['scripts/cmitemplate_calc'],
command_options={
'build_sphinx': {
'project': ('setup.py', name),
'version': ('setup.py', version),
'release': ('setup.py', release),
'source_dir': ('setup.py', 'doc'),
'copyright': ('setup.py', copyright)}
},
)