Fix build issues

This commit is contained in:
lukew3
2020-10-19 10:46:32 -04:00
parent 29ae868dae
commit f723fb1881
4 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
.__init__ import * from .__init__ import *
def meanMedianFunc(maxlen = 10): def meanMedianFunc(maxlen = 10):
randomlist = random.sample(range(1, 99), maxlen) randomlist = random.sample(range(1, 99), maxlen)

View File

@@ -1,4 +1,4 @@
.__init__ import * from .__init__ import *
def sectorAreaFunc(maxRadius = 49,maxAngle = 359): def sectorAreaFunc(maxRadius = 49,maxAngle = 359):
Radius = random.randint(1, maxRadius) Radius = random.randint(1, maxRadius)

View File

@@ -10,6 +10,7 @@ setup(
license='MIT', license='MIT',
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
], ],
entry_points={ entry_points={
} }