-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
64 lines (57 loc) · 1.82 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
54
55
56
57
58
59
60
61
62
63
64
import os
import re
import codecs
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
def find_version(*file_paths):
try:
f = codecs.open(os.path.join(here, *file_paths), "r", "latin1")
version_file = f.read()
f.close()
except:
raise RuntimeError("Unable to find version string.")
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
version_file, re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find version string.")
try:
f = codecs.open("README.rst", encoding="utf-8")
long_description = f.read()
f.close()
except:
long_description = ""
setup(
name="shareinator",
version=find_version("shareinator/shareinator.py"),
description="Share files using ssh on same network",
long_description=long_description,
url="https://github.com/GDGVIT/ssh",
author="GDGVIT",
author_email="[email protected]",
packages=find_packages(include=[
"shareinator",
"shareinator.*"
]),
include_package_data=True,
entry_points={
"console_scripts": [
"shareinator=shareinator.shareinator:main"
]
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Environment :: Console",
"Environment :: X11 Applications :: Qt",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Communications :: File Sharing"
],
install_requires=[
"pyqt5>=5.6, <5.16"
],
python_requires='~=3.5'
)