-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (41 loc) · 1.45 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
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
setup(
name='snapfile',
# Versions should comply with PEP440.
version='0.4.0',
description='A file transferring tool',
# Author details
author='Xurui Yan',
author_email = "[email protected]",
url="https://github.com/yanxurui/Snapfile",
classifiers=[
# Specify the Python versions you support here.
'Programming Language :: Python :: 3.8',
],
# You can just specify the packages manually here if your project is
# simple. Or you can use find_packages().
packages=find_packages(exclude=['tests']),
# Alternatively, if you want to distribute just a my_module.py, uncomment
# this:
# py_modules=["my_module"],
# include non-python files listed in MANIFEST.in
include_package_data=True,
# List run-time dependencies here. These will be installed by pip when
# your project is installed.
install_requires=[
'aiohttp==3.9.0',
'aiohttp-security==0.4.0',
'aiohttp-session==2.9.0',
'redis==5.1.0',
'user_agents',
'cryptography==42.0.2'
],
# To provide executable scripts, use entry points in preference to the
# "scripts" keyword. Entry points provide cross-platform support and allow
# pip to create the appropriate form of executable for the target platform.
entry_points={
'console_scripts': [
'snapfile=snapfile.__main__:main',
],
},
)