37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name='syslab',
|
|
version='0.3.0',
|
|
author='Tue Vissing Jensen',
|
|
author_email='tvjens at elektro.dtu.dk',
|
|
description=('SYSLAB webservice client library.'),
|
|
long_description=(''),
|
|
url='https://www.syslab.dk',
|
|
install_requires=[
|
|
'requests>=2.18',
|
|
'beautifulsoup4>=3.7',
|
|
],
|
|
packages=find_packages(exclude=['tests*']),
|
|
include_package_data=True,
|
|
entry_points={
|
|
'console_scripts': [
|
|
],
|
|
},
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Environment :: Console',
|
|
'Intended Audience :: Science/Research',
|
|
'License :: Other/Proprietary License',
|
|
'Natural Language :: English',
|
|
'Operating System :: OS Independent',
|
|
'Programming Language :: Python',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: 3.8',
|
|
'Topic :: Scientific/Engineering',
|
|
'Topic :: Software Development :: Libraries :: Python Modules',
|
|
],
|
|
)
|