-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
executable file
·39 lines (36 loc) · 1.14 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import vinergy
with open('README.rst') as file:
long_description = file.read()
setup(
name = 'Vinergy',
version = vinergy.__version__,
entry_points = {
'console_scripts': [
'vinergy = vinergy.__main__:main',
],
},
description = 'Vinergy - CLI Pastebin within VimEnergy',
long_description = long_description,
author = 'Vayn & lilydjwg',
author_email = 'vayn@vayn.de & lilydjwg@gmail.com',
url = 'https://cfp.vim-cn.com/',
download_url = '/~https://github.com/Vim-cn/vinergy',
license = 'GPL3',
install_requires = ['tornado>=5', 'asyncpg', 'pygments'],
packages = find_packages(),
package_data = {'vinergy': ['static/*', 'templates/*']},
exclude_package_data = {'vinergy': ['*~']},
zip_safe = True,
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL) ',
'Programming Language :: Python',
'Programming Language :: Python 3',
'Programming Language :: Python 3.7',
'Topic :: Internet',
],
)