-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (40 loc) · 1.34 KB
/
setup.py
File metadata and controls
47 lines (40 loc) · 1.34 KB
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
42
43
44
45
46
47
from setuptools import setup, Extension, find_namespace_packages
import io
import codecs
import os
import sys
import orcs
import orcs.version
packages = find_namespace_packages(where=".")
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='orcs',
version='3.0',
url='https://github.com/thomasorb/orcs',
license='GPLv3+',
author='Thomas Martin',
author_email='thomas.martin.1@ulaval.ca',
maintainer='Thomas Martin',
maintainer_email='thomas.martin.1@ulaval.ca',
description='Analysis engine for SITELLE spectral cubes',
long_description=long_description,
packages=packages,
package_dir={"": "."},
include_package_data=True,
package_data={
'':['LICENSE.txt', '*.rst', '*.txt', 'docs/*', '*.pyx'],
'orcs':['data/*', '*.pyx']},
exclude_package_data={
'': ['*~', '*.so', '*.pyc'],
'orcs':['*~', '*.so', '*.pyc', '*.c']},
platforms='any',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Cython',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent' ],
)