-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 853 Bytes
/
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
from setuptools import setup, find_packages
from vhoster.cli import app
setup(
name=app('name'),
version=app('version'),
author=app('author'),
description=app('description'),
url=app('url'),
packages=find_packages(),
include_package_data=True,
install_requires=[
'Click',
'colorama',
'cryptography',
'pyratemp',
'click-alias',
'pyngrok',
'importlib-resources',
'terminaltables'
],
entry_points = {
'console_scripts': ['vhoster=vhoster.cli:main']
},
package_data={
'': ['*.md', '*.txt', 'LICENSE', 'README', '*.ico'],
'vhoster': ['*.json', '*.conf']
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Windows"
]
)