-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
31 lines (29 loc) · 1.24 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
from setuptools import setup, find_packages
version = '0.1.2.a'
setup(
name='python-gearbox',
version=version,
author='Eduardo M. Firvida Donestevez',
packages=find_packages(),
include_package_data=True,
author_email='[email protected]',
description='Python library for gear transmission design',
install_requires=['numpy>=1.8.0', 'scipy>=0.10.0', 'jinja2>=2.7.0'],
url='https://github.com/efirvida/python-gearbox',
download_url='https://github.com/efirvida/python-gearbox/archive/master.zip',
keywords=['gearbox', 'gear', 'agma', 'iso', 'gear transmission', 'engineering'],
platforms='any',
license='MIT',
zip_safe=False,
classifiers=['Intended Audience :: Developers',
'Intended Audience :: Manufacturing',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
)