-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (39 loc) · 1.48 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("limitedinteraction/VERSION", "r") as fh:
version = fh.read()
setuptools.setup(
name='limitedinteraction',
version=version,
description="Simple dialog windows for scripters and scientists.",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://felixchenier.uqam.ca/limitedinteraction/',
author='Félix Chénier',
author_email='chenier.felix@uqam.ca',
license='Apache',
license_files=['LICENSE.txt'],
packages=setuptools.find_packages(),
package_data={
'limitedinteraction': ['VERSION', 'images/*.png']},
project_urls={
'Documentation': 'https://felixchenier.uqam.ca/limitedinteraction/api.html',
'Source': 'https://github.com/felixchenier/limitedinteraction/',
'Tracker': 'https://github.com/felixchenier/limitedinteraction/issues',
},
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: User Interfaces',
],
python_requires='>=3.7',
)