-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
36 lines (35 loc) · 1.67 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
32
33
34
35
36
import setuptools
from setuptools import setup
setup(
name = 'calcwave', # How you named your package folder (MyLib)
packages = ['calcwave'], #setuptools.find_packages(), # Chose the same as "name"
version = "1.6.4",
license='gpl-3.0',
description = 'A simple cross-platform utility for generating and playing audio using a mathematical formula ',
author = 'Justin Douty', # Type in your name
url = 'https://github.com/zenarcher007/calcwave', # Provide either the link to your github or to your website
download_url = 'https://github.com/zenarcher007/calcwave/archive/refs/tags/v1.6.3.tar.gz',
keywords = ['cross-platform', 'audio synthesis', 'terminal', 'user-friendly'], # Keywords that define your package best
install_requires=[
'numpy>=1.23',
'argparse',
'windows-curses ; platform_system=="Windows"',
],
entry_points={
'console_scripts': [
'calcwave = calcwave:audiostudio'
]
},
classifiers=[
'Development Status :: 4 - Beta', # Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
'Intended Audience :: End Users/Desktop', # Define that your audience are developers
'Topic :: Multimedia :: Sound/Audio :: Sound Synthesis',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', # Again, pick a license
'Programming Language :: Python :: 3', #Specify which python versions that you want to support
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
]
#packages=setuptools.find_packages(),
)