-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 760 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
setup(
name='PicassoPy',
version='0.1.1',
description='A tool for processing polly files',
url='https://github.com/ulysses78/picassopy',
author='Andi Klamt',
author_email='klamt@tropos.de',
license='MIT License',
# packages=['PicassoPy'],
# install_requires=['json',
# 'datetime',
# ],
classifiers=[
'Development Status :: 1 - Planning',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
],
)