forked from KeyWeeUsr/Bear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 1.81 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
65
66
#!/usr/bin/env python
"""
Basic setup.py
"""
from os.path import abspath, dirname, join, relpath
from setuptools import setup, find_packages
from bear import VERSION, NAME
ROOT = abspath(dirname(__file__))
REPO = 'https://github.com/KeyWeeUsr/Bear'
PKG = join(ROOT, NAME)
with open(join(ROOT, "README.md")) as fd:
README = fd.read()
DATA = [
relpath('README.md', ROOT)
]
setup(
name='thebear',
version=VERSION,
description='Bear - the decluttering deduplicator',
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(),
author='Peter Badida',
author_email='[email protected]',
url='https://github.com/KeyWeeUsr/Bear',
download_url=f'https://github.com/KeyWeeUsr/Bear/tarball/{VERSION}',
entry_points={
'console_scripts': [f'{NAME} = {NAME}.__main__:run']
},
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: '
'GNU Affero General Public License v3 or later (AGPLv3+)',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: Implementation :: CPython',
'Typing :: Typed'
],
install_requires=['ensure'],
extras_require={
'dev': ['pycodestyle', 'pylint', 'coverage'],
'ci': ['coveralls'],
'release': [
'setuptools', 'wheel',
'pycodestyle', 'pylint',
'coverage', 'coveralls',
'twine', 'pyinstaller', 'requests'
]
},
include_package_data=True,
data_files=[(NAME, DATA)]
)