forked from hftools/hftools
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
36 lines (34 loc) · 1.44 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
import os
from distutils.core import setup
if os.path.exists("MANIFEST"):
os.unlink("MANIFEST")
setup(name='hftools',
version='0.4',
packages=['hftools',
'hftools._external',
'hftools.constants', 'hftools.constants.tests',
'hftools.core',
'hftools.dataset', 'hftools.dataset.tests',
'hftools.file_formats', 'hftools.file_formats.tests',
'hftools.networks', 'hftools.networks.tests',
'hftools.plotting',
'hftools.testing', 'hftools.tests',
'hftools.tests',
'hftools.testing.tests',
],
license="BSD",
author="The HFTools Development Team",
platforms=['Linux','Mac OSX','Windows XP/Vista/7/8'],
keywords=['microwave'],
url="www.github.com/hftools",
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
# 'Programming Language :: Python :: 3',
],
description="HFTools: Python tools for microwave engineering",
long_description="""HFTools: Python tools for microwave engineering (long)""",
)