-
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 773 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 773 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 machineid import __version__, __author__
from setuptools import setup
with open("README.md", "r") as fh:
readme = fh.read()
setup(
name='py-machineid',
version=__version__,
description='Get the unique machine ID of any host (without admin privileges)',
long_description_content_type='text/markdown',
long_description=readme,
url='https://github.com/keygen-sh/py-machineid',
author=__author__,
author_email='oss@keygen.sh',
license='MIT',
install_requires=['winregistry>=2.0.1,<3.0.0; sys_platform == "win32"'],
packages=['machineid'],
package_data={
'machineid': ['py.typed'],
},
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)