-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
56 lines (43 loc) · 1.8 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
from setuptools import setup, find_packages
from os import path
# Get the long description from the README file
with open(path.join('.', 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
author="tryexceptpass",
author_email="[email protected]",
name="sofi",
version="0.3.9",
description="Desktop and Web GUI framework based on WebSockets",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/tryexceptpass/sofi",
packages=find_packages(),
package_data={
'sofi': ['app/main.html', 'app/_sofi.js'],
'test': ['test.png']
},
install_requires=['websockets'],
python_requires='>=3.6',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'hypothesis'],
license="MIT",
classifiers=['License :: OSI Approved :: MIT License',
'Framework :: AsyncIO',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia',
'Topic :: Multimedia :: Graphics',
'Topic :: Software Development :: User Interfaces',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Development Status :: 4 - Beta',
],
keywords='websockets javascript bootstrap gui unity3d desktop html',
project_urls={
'Gitter Chat': 'https://gitter.im/try-except-pass/sofi',
'Say Thanks!': 'https://saythanks.io/to/tryexceptpass',
'Source': 'https://github.com/tryexceptpass/sofi',
'Documentation': 'http://sofi-gui-framework.readthedocs.io/en/latest/',
},
)