-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 914 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 914 Bytes
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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, Extension
from setuptools.command.install import install
####################################################################
# CONFIGURATION
####################################################################
# do the build/install
setup(
name="spectroscopy",
version="0.1",
description="Python package for processing field spectroscopy data.",
long_description="Python package for processing field spectroscopy data.",
author="Nial Peters",
author_email="nonbiostudent@hotmail.com",
url="",
license="GPL v3",
package_dir={'': 'src'},
install_requires=['pyinotify'],
packages=['spectroscopy', 'spectroscopy.flux', 'spectroscopy.doas',
'spectroscopy.plugins', 'spectroscopy.util'],
package_data={"spectroscopy.flux": ["flyspec_config.cfg"]},
)