-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
43 lines (36 loc) · 1.25 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
37
38
39
40
41
42
43
import os
from setuptools import setup, find_packages
def readme():
with open('README.md') as f:
return f.read()
PACKAGE_NAME = 'pybeoplay'
HERE = os.path.abspath(os.path.dirname(__file__))
VERSION = '2.7.0'
PACKAGES = find_packages(exclude=['tests', 'tests.*', 'dist', 'ccu', 'build'])
REQUIRES = []
long_description = readme()
setup(
name=PACKAGE_NAME,
version=VERSION,
license='MIT License',
url='https://github.com/giachello/pybeoplay',
download_url='https://github.com/giachello/pybeoplay/tarball/'+VERSION,
author='Giovanni Iachello',
author_email='[email protected]',
description='BeoPlay API for Python',
long_description=long_description,
long_description_content_type='text/markdown',
readme="README.md",
packages=PACKAGES,
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=REQUIRES,
keywords=['beoplay', 'pybeoplay', 'B&O' , 'Bang & Olufsen'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.9'
],
)