-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (39 loc) · 1.16 KB
/
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
32
33
34
35
36
37
38
39
40
41
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="hyperdirmic",
version="0.1.0",
author="Drew White",
author_email="drew@drew-white.dev",
description="An OSX app that watches directories and auto-organizes files.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/drucial/hyperdirmic",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
install_requires=[
"watchdog",
"setproctitle",
"pytest",
"pytest-order",
"pexpect",
"black",
"flake8",
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
],
python_requires=">=3.6",
entry_points={
"console_scripts": [
"hyperdirmic=src.main:main",
],
},
)