forked from lbolla/EMpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (37 loc) · 1.15 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
__author__ = 'Lorenzo Bolla'
from setuptools import setup, find_packages
with open('README.rst', 'r') as readme:
long_description = readme.read()
setup(
name='ElectroMagneticPython',
version='1.1',
author='Lorenzo Bolla',
author_email='[email protected]',
description='EMpy - ElectroMagnetic Python',
long_description=long_description,
url='http://lbolla.github.io/EMpy/',
download_url='https://github.com/lbolla/EMpy',
license='BSD',
platforms=['Windows', 'Linux', 'Mac OS-X'],
packages=find_packages(),
install_requires=[
'distribute>=0.6.28',
'future',
'numpy',
'scipy',
'matplotlib',
],
provides=['EMpy'],
test_suite='tests',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Physics',
]
)