-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
59 lines (49 loc) · 1.62 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
import os
from setuptools import setup
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as rd:
long_description = rd.read()
with open(os.path.join(os.path.dirname(__file__), 'requirements.txt')) as r:
install_requires = r.read().splitlines()
setup(
name='pastemngr',
description='A powerful pastebin manager for the command line.',
long_description=long_description,
long_description_content_type='text/markdown',
version='1.1.0',
author='pvpscript',
url='https://github.com/pvpscript/pastemngr',
keywords='pastebin manager console',
classifiers=[
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Unix',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
scripts=['scripts/pastemngr'],
data_files=[
('share/man/man1', [
'doc/pastemngr.1',
]),
('share/doc/pastemngr', [
'README.md',
]),
],
package_data = {
'pastemngr': [
'db/model.sql',
],
},
packages=(
'pastemngr',
'pastemngr.api',
'pastemngr.core',
'pastemngr.db',
'pastemngr.parser',
),
requires=install_requires,
python_requires='>=3.6',
)