-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (50 loc) · 1.72 KB
/
Copy pathsetup.py
File metadata and controls
54 lines (50 loc) · 1.72 KB
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
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup
# Get Long Description
with open("README.md", "r") as readme:
long_description = readme.read().replace("Â", "")
# Get requirements
with open("requirements.txt", "r") as requirements:
reqs = requirements.read().splitlines()
setup(
name="PasswordCardGenerator",
version="1.5.1",
# Major version 1
# Minor version 5
# Maintenance version 0
author="DerSchinken",
maintainer="DerSchinken",
description="A Password Card Generator",
long_description=long_description,
long_description_content_type="text/markdown",
license_files=["LICENSE"],
packages=[
"PasswordCardGenerator",
"PasswordCardGenerator.GUI",
],
package_data={
"PasswordCardGenerator": ["*.TTF", "*.pyi", "*.png", "*.dd", "GUI/assets/img/*.png", "GUI/assets/tmp/*.dd"],
"PasswordCardGenerator.GUI": ["*.png", "*.dd"], # dd - dont delete
},
include_package_data=True,
install_requires=reqs,
python_requires=">= 3.6",
project_urls={
"Homepage": "http://index12.bplaced.net/",
"Github": "https://github.com/DerSchinken/PasswordCardGenerator",
},
keyword=[
"PasswordCardGenerator",
"Password Card Generator",
"Password",
],
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Information Technology',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
"Programming Language :: Python :: 3.10"
],
)