-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1.18 KB
/
setup.py
File metadata and controls
41 lines (34 loc) · 1.18 KB
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
#!/usr/bin/env python
# Standard library modules.
import os
# Third party modules.
from setuptools import setup, find_packages
# Local modules.
# Globals and constants variables.
BASEDIR = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(BASEDIR, "README.md"), "r") as fp:
LONG_DESCRIPTION = fp.read()
with open(os.path.join(BASEDIR, "requirements.txt"), "r") as fp:
INSTALL_REQUIRES = fp.read().splitlines()
setup(
name="py2win",
version="0.4.0",
url="https://github.com/ppinard/py2win",
description="Create a stand-alone Windows distribution of a Python program",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
author="Philippe T. Pinard",
author_email="philippe.pinard@gmail.com",
license="MIT",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development",
],
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
)