Skip to content
This repository was archived by the owner on Apr 1, 2026. It is now read-only.

Commit fa3507e

Browse files
Create setup.py
1 parent 1383ba8 commit fa3507e

1 file changed

Lines changed: 28 additions & 0 deletions

File tree

setup.py

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
import os
2+
from setuptools import setup, find_packages
3+
4+
PACKAGES = find_packages()
5+
6+
# Get version and release info, which is all stored in shablona/version.py
7+
ver_file = os.path.join('PythonGUI_apps', 'version.py')
8+
with open(ver_file) as f:
9+
exec(f.read())
10+
11+
opts = dict(name=NAME,
12+
maintainer=MAINTAINER,
13+
maintainer_email=MAINTAINER_EMAIL,
14+
description=DESCRIPTION,
15+
url=URL,
16+
download_url=DOWNLOAD_URL,
17+
license=LICENSE,
18+
classifiers=CLASSIFIERS,
19+
author=AUTHOR,
20+
author_email=AUTHOR_EMAIL,
21+
platforms=PLATFORMS,
22+
version=VERSION,
23+
packages=PACKAGES,
24+
install_requires=REQUIRES)
25+
26+
27+
if __name__ == '__main__':
28+
setup(**opts)

0 commit comments

Comments
 (0)