-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (38 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (38 loc) · 1.29 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
from setuptools import setup, find_packages
from src.dupliCat import __version__
with open("README.md", "r", encoding="utf-8") as readme:
long_description = readme.read()
setup(
name="dupliCat",
version=__version__,
author="Divine Darkey (teddbug-S)",
author_email="teddbug47@gmail.com",
maintainer="Divine Darkey (teddbug-S)",
maintainer_email="teddbug47@gmail.com",
description="A simple package to hunt down file duplicates.",
long_description=long_description,
description_content_type="text",
long_description_content_type="text/markdown",
url="https://github.com/teddbug-S/dupliCat",
project_urls={
"Issues": "https://github.com/teddbug-S/dupliCat/issues",
"Pull Requests": "https://github.com/teddbug-S/dupliCat/pulls"
},
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
],
package_dir={"": "src"},
packages=find_packages("src"),
python_requires=">=3.6",
requires=["click"],
entry_points={
'console_scripts': [
'dupliCat = dupliCat.__main__:main',
]
}
)