40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Setup script for neo-pod-desktop
|
|
"""
|
|
|
|
from setuptools import setup, find_packages
|
|
import os
|
|
|
|
# Read requirements from requirements.txt
|
|
with open('requirements.txt') as f:
|
|
requirements = f.read().splitlines()
|
|
|
|
# Read long description from README.md
|
|
with open('README.md', encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
setup(
|
|
name="neo-pod-desktop",
|
|
version="1.0.0",
|
|
description="Desktop application for converting, managing and transferring music to iPod Nano devices",
|
|
long_description=long_description,
|
|
long_description_content_type="text/markdown",
|
|
author="neo-pod-desktop",
|
|
author_email="",
|
|
url="https://github.com/matcohen/neo-pod-desktop",
|
|
packages=find_packages(),
|
|
install_requires=requirements,
|
|
entry_points={
|
|
'console_scripts': [
|
|
'neo-pod-desktop=src.app:main',
|
|
],
|
|
},
|
|
classifiers=[
|
|
"Programming Language :: Python :: 3",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
],
|
|
python_requires=">=3.7",
|
|
)
|