forked from rl-institut/smooth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 695 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 695 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
from setuptools import find_packages
setup(
name='smooth',
version='0.3.0',
packages=find_packages(),
package_data={'smooth.examples': ['example_timeseries/*.csv']},
license='Dual-License MIT/Apache-2.0',
long_description=open('README.md', encoding="utf-8").read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
],
)