-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 1.89 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
51
52
53
import pathlib
from setuptools import setup
from transfer import __version__
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
# This call to setup() does all the work
setup(
name="transfer.sh",
version=f"{__version__}",
description="Transfer.sh command line program, Now file sharing from the command line is easy.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/MayankFawkes/transfer.sh",
author="Mayank Gupta",
author_email="mayankfawkes@gmail.com",
license="MIT License",
project_urls={
"Documentation": "https://github.com/MayankFawkes/transfer.sh/blob/master/README.md",
"Source": "https://github.com/MayankFawkes/transfer.sh",
},
classifiers=[
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3',
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
'Topic :: System :: Networking',
'Topic :: Internet :: WWW/HTTP',
"Natural Language :: English",
'Environment :: Plugins',
"Environment :: Console",
"Topic :: Terminals",
"Topic :: Utilities",
],
entry_points={
"console_scripts": ["transfer = transfer.cli:main"],
},
packages=["transfer"],
python_requires=">=3.6",
keywords=["upload", "cli", "transfer.sh"],
include_package_data=True,
install_requires=["requests"],
)