-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 686 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
with open('README.md') as f:
long_description = f.read()
setup(
name='AlphaCopy',
version='0.0.0',
license='GNU General Public License v3.0',
description='A Raspberry Pi backup application with GUI',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/ozzysp/AlphaCopy',
package_dir={'': 'src'},
python_requires='>=3.8',
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8'
],
platforms='Linux'
)