-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (42 loc) · 1.69 KB
/
setup.py
File metadata and controls
46 lines (42 loc) · 1.69 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
import sys
from setuptools import setup, find_packages
from requirements_utils import parse_dependency_links, parse_requirements
if sys.version_info < (2, 6):
print 'ERROR: beam_integrals requires at least Python 2.6 to run.'
sys.exit(1)
setup(
name='beam_integrals',
version='1.1.2',
url='https://github.com/petarmaric/beam_integrals/',
license='BSD',
author='Petar Maric',
author_email='petarmaric@uns.ac.rs',
description='Console app and Python API for determining beam integrals of '\
'all 6 supported beam types, as described in D.D. Milasinovic,'\
' "The Finite Strip Method in Computational Mechanics" (ISBN '\
'8680297194)',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Physics',
],
platforms='any',
packages=find_packages(exclude=['tests*']),
include_package_data=True,
entry_points={
'console_scripts': ['beam_integrals=beam_integrals.shell:main']
},
install_requires = parse_requirements('requirements.txt'),
dependency_links = parse_dependency_links('requirements.txt'),
setup_requires = ['nose>=1.0'],
tests_require = parse_requirements('requirements-test.txt'),
test_suite = 'nose.collector',
)