-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 936 Bytes
/
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
from setuptools import setup, find_packages
with open("readme.md") as readme:
long_description = readme.read()
setup(
name="Ufd",
url="https://github.com/emboiko/Ufd",
author="Emboiko",
author_email="ed@emboiko.com",
version="1.0.0",
keywords="single instance",
description="Unopinionated, minimalist, reusable, slightly configurable, general-purpose file-dialog.",
py_modules=["Ufd"],
packages=find_packages("src"),
package_dir={"":"src"},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows"
],
long_description=long_description,
long_description_content_type="text/markdown"
)