-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 885 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 885 Bytes
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
from distutils.core import setup
f = open("README.rst")
setup(
name = 'dynamic_variables',
version = '0.2.3',
description = 'Change variables dynamically in runtime with the help of a simple GUI',
long_description = f.read(),
packages = ['dynamic_variables'],
license='MIT',
author = 'Cahid Enes Keles',
author_email = '[email protected]',
url = 'https://github.com/cahidenes/dynamic_variables',
download_url = 'https://github.com/cahidenes/dynamic_variables/archive/refs/tags/v0.2.tar.gz',
keywords = ['dynamic', 'variable', 'config', 'gui', 'change', 'runtime'],
install_requires=[
'tk',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
)