-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (36 loc) · 970 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import os
import setuptools
class CleanCommand(setuptools.Command):
"""Custom clean command to tidy up the project root."""
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
# noinspection PyMethodMayBeStatic
def run(self):
os.system('rm -vrf ./build ./dist ./*.pyc ./*.tgz ./*.egg-info')
setuptools.setup(
name="fspy",
python_requires="==3.6.*",
use_scm_version=True,
author="Konstantin Chupin",
author_email="[email protected]",
description="File System Spy",
setup_requires=[
"setuptools_scm"
],
install_requires=[
"pytz",
"tzlocal",
"pydantic==0.13",
"janus==0.4.0",
"aiohttp==3.4.1",
"SQLAlchemy==1.2.11",
],
packages=setuptools.find_packages(exclude=("tests",)),
classifiers=['Private :: Do Not Upload'],
cmdclass={
'clean': CleanCommand,
}
)