-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (28 loc) · 854 Bytes
/
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
from setuptools import setup
from os import path
long_description = ""
with open("README.md", 'r', encoding='UTF-8') as f:
long_description = f.read()
required = []
with open('requirements.txt', encoding='UTF-8') as f:
required = f.read().splitlines()
VERSION = "1.2.0"
setup(
version=VERSION,
name="iotwin-data-generator",
author="Murat Alkan",
author_email="",
description="IoTwin | Data Generator",
url="https://github.com/muratalkan/iotwin-data-generator",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
python_requires=">=3.6",
packages=['iotwin_data_generator'],
install_requires=required,
entry_points={
'gui_scripts': [
'iotwin-data-generator = iotwin_data_generator.__main__:main'
]
}
)